lino 25.5.2__py3-none-any.whl → 25.5.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. lino/__init__.py +1 -1
  2. lino/api/dd.py +5 -3
  3. lino/api/doctest.py +2 -2
  4. lino/core/__init__.py +3 -3
  5. lino/core/actions.py +60 -582
  6. lino/core/actors.py +66 -32
  7. lino/core/atomizer.py +355 -0
  8. lino/core/boundaction.py +8 -4
  9. lino/core/constants.py +3 -1
  10. lino/core/dbtables.py +4 -3
  11. lino/core/elems.py +33 -21
  12. lino/core/fields.py +40 -210
  13. lino/core/kernel.py +18 -13
  14. lino/core/layouts.py +30 -57
  15. lino/core/model.py +6 -4
  16. lino/core/permissions.py +18 -0
  17. lino/core/renderer.py +5 -1
  18. lino/core/requests.py +13 -7
  19. lino/core/signals.py +1 -1
  20. lino/core/site.py +1 -1
  21. lino/core/store.py +13 -156
  22. lino/core/tables.py +5 -2
  23. lino/core/utils.py +124 -1
  24. lino/locale/bn/LC_MESSAGES/django.po +1034 -868
  25. lino/locale/de/LC_MESSAGES/django.mo +0 -0
  26. lino/locale/de/LC_MESSAGES/django.po +996 -892
  27. lino/locale/django.pot +968 -869
  28. lino/locale/es/LC_MESSAGES/django.po +1032 -869
  29. lino/locale/et/LC_MESSAGES/django.po +1032 -866
  30. lino/locale/fr/LC_MESSAGES/django.po +1034 -866
  31. lino/locale/nl/LC_MESSAGES/django.po +1040 -868
  32. lino/locale/pt_BR/LC_MESSAGES/django.po +1029 -868
  33. lino/locale/zh_Hant/LC_MESSAGES/django.po +1029 -868
  34. lino/mixins/duplicable.py +8 -2
  35. lino/mixins/registrable.py +1 -1
  36. lino/modlib/changes/utils.py +4 -3
  37. lino/modlib/extjs/ext_renderer.py +1 -1
  38. lino/modlib/extjs/views.py +5 -0
  39. lino/modlib/memo/mixins.py +1 -3
  40. lino/modlib/uploads/ui.py +6 -8
  41. lino/modlib/users/fixtures/demo_users.py +16 -13
  42. lino/utils/choosers.py +11 -1
  43. lino/utils/diag.py +6 -4
  44. lino/utils/fieldutils.py +14 -11
  45. lino/utils/instantiator.py +4 -2
  46. lino/utils/report.py +5 -3
  47. {lino-25.5.2.dist-info → lino-25.5.3.dist-info}/METADATA +1 -1
  48. {lino-25.5.2.dist-info → lino-25.5.3.dist-info}/RECORD +51 -50
  49. {lino-25.5.2.dist-info → lino-25.5.3.dist-info}/WHEEL +0 -0
  50. {lino-25.5.2.dist-info → lino-25.5.3.dist-info}/licenses/AUTHORS.rst +0 -0
  51. {lino-25.5.2.dist-info → lino-25.5.3.dist-info}/licenses/COPYING +0 -0
@@ -7,7 +7,7 @@ msgid ""
7
7
  msgstr ""
8
8
  "Project-Id-Version: lino 24.7.0\n"
9
9
  "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
10
- "POT-Creation-Date: 2025-03-23 17:01+0200\n"
10
+ "POT-Creation-Date: 2025-05-22 19:17+0300\n"
11
11
  "PO-Revision-Date: 2024-07-20 19:57+0300\n"
12
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
13
  "Language: pt_BR\n"
@@ -53,12 +53,12 @@ msgstr ""
53
53
 
54
54
  #: lino/help_texts.py:14
55
55
  msgid ""
56
- "Adds a timestamp field which holds the creation time of every individual "
57
- "database object."
56
+ "Adds a timestamp field that holds the creation time of every individual "
57
+ "database row."
58
58
  msgstr ""
59
59
 
60
60
  #: lino/help_texts.py:15
61
- msgid "The time when this object was created."
61
+ msgid "The time when this database row was created."
62
62
  msgstr ""
63
63
 
64
64
  #: lino/help_texts.py:16
@@ -162,7 +162,7 @@ msgstr ""
162
162
 
163
163
  #: lino/help_texts.py:35
164
164
  msgid ""
165
- "Adds a row action “Duplicate which duplicates (creates a clone of) the "
165
+ "Adds a row action “Duplicate”, which duplicates (creates a clone of) the "
166
166
  "object it was called on."
167
167
  msgstr ""
168
168
 
@@ -346,10 +346,14 @@ msgid ""
346
346
  msgstr ""
347
347
 
348
348
  #: lino/help_texts.py:73
349
- msgid "Return the object identified by the given reference."
349
+ msgid "Return the next database row, or None if this is the last one."
350
350
  msgstr ""
351
351
 
352
352
  #: lino/help_texts.py:74
353
+ msgid "Return the object identified by the given reference."
354
+ msgstr ""
355
+
356
+ #: lino/help_texts.py:75
353
357
  msgid ""
354
358
  "Overrides the default behaviour defined in "
355
359
  "lino.core.model.Model.quick_search_filter(). For Referrable objects, when"
@@ -357,173 +361,176 @@ msgid ""
357
361
  "means the ref and not the primary key."
358
362
  msgstr ""
359
363
 
360
- #: lino/help_texts.py:75
364
+ #: lino/help_texts.py:76
361
365
  msgid "A referrable whose ref field is used to define a hierarchical structure."
362
366
  msgstr ""
363
367
 
364
- #: lino/help_texts.py:76
368
+ #: lino/help_texts.py:77
365
369
  msgid "Displays the structured together with the designation."
366
370
  msgstr ""
367
371
 
368
- #: lino/help_texts.py:77
372
+ #: lino/help_texts.py:78
369
373
  msgid "Return the “designation” part (without the reference)."
370
374
  msgstr ""
371
375
 
372
- #: lino/help_texts.py:78
376
+ #: lino/help_texts.py:79
373
377
  msgid ""
374
378
  "Base class for the choices of the choicelist that defines the state field"
375
379
  " of any Registrable."
376
380
  msgstr ""
377
381
 
378
- #: lino/help_texts.py:79
382
+ #: lino/help_texts.py:80
379
383
  msgid ""
380
384
  "Whether the registrable object having this state should be editable or "
381
385
  "not."
382
386
  msgstr ""
383
387
 
384
- #: lino/help_texts.py:80
388
+ #: lino/help_texts.py:81
385
389
  msgid ""
386
390
  "Base class to anything that may be “registered” and “deregistered”, where"
387
391
  " “registered” means “this object has been taken account of”."
388
392
  msgstr ""
389
393
 
390
- #: lino/help_texts.py:81
394
+ #: lino/help_texts.py:82
391
395
  msgid "The workflow state field."
392
396
  msgstr ""
393
397
 
394
- #: lino/help_texts.py:82
398
+ #: lino/help_texts.py:83
395
399
  msgid ""
396
400
  "Return a list of the fields that are disabled when this is registered "
397
401
  "(i.e. state is not editable)."
398
402
  msgstr ""
399
403
 
400
- #: lino/help_texts.py:83
404
+ #: lino/help_texts.py:84
401
405
  msgid "Only rows in an editable state may be edited."
402
406
  msgstr ""
403
407
 
404
- #: lino/help_texts.py:84
408
+ #: lino/help_texts.py:85
405
409
  msgid ""
406
410
  "Register this object. The base implementation just sets the state to "
407
411
  "“registered”."
408
412
  msgstr ""
409
413
 
410
- #: lino/help_texts.py:85
414
+ #: lino/help_texts.py:86
411
415
  msgid ""
412
416
  "Deregister this object. The base implementation just sets the state to "
413
417
  "“draft”."
414
418
  msgstr ""
415
419
 
416
- #: lino/help_texts.py:86
420
+ #: lino/help_texts.py:87
417
421
  msgid "Move this row N rows upwards or downwards."
418
422
  msgstr ""
419
423
 
420
- #: lino/help_texts.py:87
424
+ #: lino/help_texts.py:88
421
425
  msgid "Move this row one row upwards."
422
426
  msgstr ""
423
427
 
424
- #: lino/help_texts.py:88
428
+ #: lino/help_texts.py:89
425
429
  msgid "Move this row one row downwards."
426
430
  msgstr ""
427
431
 
428
- #: lino/help_texts.py:89
432
+ #: lino/help_texts.py:90
429
433
  msgid "Duplicate this row."
430
434
  msgstr ""
431
435
 
432
- #: lino/help_texts.py:90
436
+ #: lino/help_texts.py:91
433
437
  msgid "Mixin for models that have a field seqno containing a “sequence number”."
434
438
  msgstr ""
435
439
 
436
- #: lino/help_texts.py:91
440
+ #: lino/help_texts.py:92
437
441
  msgid "The sequence number of this item with its parent."
438
442
  msgstr ""
439
443
 
440
- #: lino/help_texts.py:92
444
+ #: lino/help_texts.py:93
441
445
  msgid ""
442
446
  "Create a duplicate of this object and insert the new object below this "
443
447
  "one."
444
448
  msgstr ""
445
449
 
446
- #: lino/help_texts.py:93
450
+ #: lino/help_texts.py:94
447
451
  msgid "Exchange the seqno of this item and the previous item."
448
452
  msgstr ""
449
453
 
450
- #: lino/help_texts.py:94
454
+ #: lino/help_texts.py:95
451
455
  msgid "Exchange the seqno of this item and the next item."
452
456
  msgstr ""
453
457
 
454
- #: lino/help_texts.py:95
458
+ #: lino/help_texts.py:96
455
459
  msgid "Displays buttons for certain actions on this row:"
456
460
  msgstr ""
457
461
 
458
- #: lino/help_texts.py:96
462
+ #: lino/help_texts.py:97
459
463
  msgid "The names of the actions to display in the move_buttons column."
460
464
  msgstr ""
461
465
 
462
- #: lino/help_texts.py:97
466
+ #: lino/help_texts.py:98
463
467
  msgid ""
464
468
  "Return a Django Queryset with all siblings of this, or None if this is a "
465
469
  "root element which cannot have any siblings."
466
470
  msgstr ""
467
471
 
468
- #: lino/help_texts.py:98
472
+ #: lino/help_texts.py:99
469
473
  msgid "Initialize seqno to the seqno of eldest sibling + 1."
470
474
  msgstr ""
471
475
 
472
- #: lino/help_texts.py:99
476
+ #: lino/help_texts.py:100
473
477
  msgid "If the user manually assigns a seqno."
474
478
  msgstr ""
475
479
 
476
- #: lino/help_texts.py:100
480
+ #: lino/help_texts.py:101
481
+ msgid "A place holder column for drag and drop row reorder on React front end"
482
+ msgstr ""
483
+
484
+ #: lino/help_texts.py:102
477
485
  msgid "Model mixin for things that have a “parent” and “siblings”."
478
486
  msgstr ""
479
487
 
480
- #: lino/help_texts.py:101
488
+ #: lino/help_texts.py:103
481
489
  msgid "A comma-separated list of the children."
482
490
  msgstr ""
483
491
 
484
- #: lino/help_texts.py:102
492
+ #: lino/help_texts.py:104
485
493
  msgid "Return an ordered list of all ancestors of this instance."
486
494
  msgstr ""
487
495
 
488
- #: lino/help_texts.py:103
496
+ #: lino/help_texts.py:105
489
497
  msgid "Return a set of this instance and all children and grandchildren."
490
498
  msgstr ""
491
499
 
492
- #: lino/help_texts.py:104
500
+ #: lino/help_texts.py:106
493
501
  msgid ""
494
502
  "Returns a tuple with two items (obj, children) representing the whole "
495
503
  "tree."
496
504
  msgstr ""
497
505
 
498
- #: lino/help_texts.py:105 lino/help_texts.py:114 lino/help_texts.py:117
499
- #: lino/help_texts.py:119 lino/help_texts.py:144 lino/help_texts.py:145
500
- #: lino/help_texts.py:152 lino/help_texts.py:163 lino/help_texts.py:164
501
- #: lino/help_texts.py:165 lino/help_texts.py:166 lino/help_texts.py:175
502
- #: lino/help_texts.py:182
506
+ #: lino/help_texts.py:107 lino/help_texts.py:116 lino/help_texts.py:119
507
+ #: lino/help_texts.py:121 lino/help_texts.py:146 lino/help_texts.py:147
508
+ #: lino/help_texts.py:154 lino/help_texts.py:165 lino/help_texts.py:166
509
+ #: lino/help_texts.py:167 lino/help_texts.py:168 lino/help_texts.py:177
503
510
  msgid "See /dev/plugins."
504
511
  msgstr ""
505
512
 
506
- #: lino/help_texts.py:106
513
+ #: lino/help_texts.py:108
507
514
  msgid "A HTML render that uses Bootstrap3."
508
515
  msgstr ""
509
516
 
510
- #: lino/help_texts.py:107
517
+ #: lino/help_texts.py:109
511
518
  msgid "Render a list of records."
512
519
  msgstr ""
513
520
 
514
- #: lino/help_texts.py:108
521
+ #: lino/help_texts.py:110
515
522
  msgid "Render a single record."
516
523
  msgstr ""
517
524
 
518
- #: lino/help_texts.py:109
525
+ #: lino/help_texts.py:111
519
526
  msgid "Render the main page."
520
527
  msgstr ""
521
528
 
522
- #: lino/help_texts.py:110
529
+ #: lino/help_texts.py:112
523
530
  msgid "The config descriptor for this plugin."
524
531
  msgstr ""
525
532
 
526
- #: lino/help_texts.py:111
533
+ #: lino/help_texts.py:113
527
534
  msgid ""
528
535
  "The username of the main checkdata responsible, i.e. a designated user "
529
536
  "who will be attributed to checkdata messages for which no specific "
@@ -531,84 +538,84 @@ msgid ""
531
538
  "get_responsible_user method)."
532
539
  msgstr ""
533
540
 
534
- #: lino/help_texts.py:112
541
+ #: lino/help_texts.py:114
535
542
  msgid "Set responsible_user to \"'robin' if this is a demo site (is_demo_site)."
536
543
  msgstr ""
537
544
 
538
- #: lino/help_texts.py:113
545
+ #: lino/help_texts.py:115
539
546
  msgid "Can see checkdata messages."
540
547
  msgstr ""
541
548
 
542
- #: lino/help_texts.py:115
549
+ #: lino/help_texts.py:117
543
550
  msgid "Which range of emotion icons to provide. Either “business” or “social”."
544
551
  msgstr ""
545
552
 
546
- #: lino/help_texts.py:116
553
+ #: lino/help_texts.py:118
547
554
  msgid "Whether comments are private by default."
548
555
  msgstr ""
549
556
 
550
- #: lino/help_texts.py:118
557
+ #: lino/help_texts.py:120
551
558
  msgid "Create or update the dashboard widgets for this user."
552
559
  msgstr ""
553
560
 
554
- #: lino/help_texts.py:120
561
+ #: lino/help_texts.py:122
555
562
  msgid "Extends lino.core.plugin.Plugin."
556
563
  msgstr ""
557
564
 
558
- #: lino/help_texts.py:121
565
+ #: lino/help_texts.py:123
559
566
  msgid ""
560
567
  "Whether the ENTER key (or CTRL+ENTER when in a textarea field) should "
561
568
  "submit the form."
562
569
  msgstr ""
563
570
 
564
- #: lino/help_texts.py:122
571
+ #: lino/help_texts.py:124
565
572
  msgid ""
566
573
  "Whether to use a status bar to display certain messages to the user. "
567
574
  "Default is False since currently this is not really useful."
568
575
  msgstr ""
569
576
 
570
- #: lino/help_texts.py:123
577
+ #: lino/help_texts.py:125
571
578
  msgid "The URL from where to include the ExtJS library files."
572
579
  msgstr ""
573
580
 
574
- #: lino/help_texts.py:124
581
+ #: lino/help_texts.py:126
575
582
  msgid ""
576
583
  "Number of seconds to wait between two refreshes of the dashboard. Default"
577
584
  " is 0, which deactivates the feature."
578
585
  msgstr ""
579
586
 
580
- #: lino/help_texts.py:125
587
+ #: lino/help_texts.py:127
581
588
  msgid "An HTML renderer that uses the ExtJS Javascript toolkit."
582
589
  msgstr ""
583
590
 
584
- #: lino/help_texts.py:126
591
+ #: lino/help_texts.py:128
585
592
  msgid "Additional converting logic for serializing Python values to json."
586
593
  msgstr ""
587
594
 
588
- #: lino/help_texts.py:127
595
+ #: lino/help_texts.py:129
589
596
  msgid ""
590
597
  "Return a HTML chunk for a button that will execute this action using a "
591
598
  "Javascript link to this action."
592
599
  msgstr ""
593
600
 
594
- #: lino/help_texts.py:128
601
+ #: lino/help_texts.py:130
595
602
  msgid ""
596
603
  "Returns a HTML chunk that displays a “toolbar” with a series of “quick "
597
604
  "manage buttons”: one “Insert” and another to open the table."
598
605
  msgstr ""
599
606
 
600
- #: lino/help_texts.py:129
607
+ #: lino/help_texts.py:131
601
608
  msgid ""
602
609
  "Note that ba.actor may differ from ar.actor when defined on a different "
603
610
  "actor. Remember e.g. the “Must read eID card” action button in eid_info "
604
611
  "of newcomers.NewClients (20140422)."
605
612
  msgstr ""
606
613
 
607
- #: lino/help_texts.py:130
614
+ #: lino/help_texts.py:132
608
615
  msgid "Called from ActionRequest.absolute_url() used in Team.eml.html"
609
616
  msgstr ""
610
617
 
611
- #: lino/help_texts.py:131
618
+ #: lino/help_texts.py:133
612
619
  msgid ""
613
620
  "Wrap the given html fragment into a <div class=\"htmlText\">, which "
614
621
  "specifies that this fragment contains simple html text inside an ExtJS "
@@ -616,454 +623,414 @@ msgid ""
616
623
  "neutralizes the “usual” effects of most html tags."
617
624
  msgstr ""
618
625
 
619
- #: lino/help_texts.py:132
626
+ #: lino/help_texts.py:134
620
627
  msgid ""
621
628
  "Return a string with the index page. Content is mostly in the "
622
629
  "extjs/index.html template."
623
630
  msgstr ""
624
631
 
625
- #: lino/help_texts.py:133
632
+ #: lino/help_texts.py:135
626
633
  msgid ""
627
634
  "Called from https://gitlab.com/lino-"
628
635
  "framework/lino/blob/master/lino/modlib/extjs/config/extjs/index.html."
629
636
  msgstr ""
630
637
 
631
- #: lino/help_texts.py:134
638
+ #: lino/help_texts.py:136
632
639
  msgid "Build the “user menu”, i.e. the menu in the top right corner."
633
640
  msgstr ""
634
641
 
635
- #: lino/help_texts.py:135
642
+ #: lino/help_texts.py:137
636
643
  msgid "This also manages action groups"
637
644
  msgstr ""
638
645
 
639
- #: lino/help_texts.py:136
646
+ #: lino/help_texts.py:138
640
647
  msgid "dh is a FormLayout or a ColumnsLayout"
641
648
  msgstr ""
642
649
 
643
- #: lino/help_texts.py:137
650
+ #: lino/help_texts.py:139
644
651
  msgid "Defines the non-window action handler used by row_action_button()"
645
652
  msgstr ""
646
653
 
647
- #: lino/help_texts.py:138
654
+ #: lino/help_texts.py:140
648
655
  msgid "Called from linolib.js."
649
656
  msgstr ""
650
657
 
651
- #: lino/help_texts.py:139
658
+ #: lino/help_texts.py:141
652
659
  msgid ""
653
660
  "See JsRenderer.goto_instance(), but when this is called while the detail "
654
661
  "window is already open (only on another record), then we don’t want to "
655
662
  "redirect to another page because that would take more time."
656
663
  msgstr ""
657
664
 
658
- #: lino/help_texts.py:140
665
+ #: lino/help_texts.py:142
659
666
  msgid "Similar to PlainIndex"
660
667
  msgstr ""
661
668
 
662
- #: lino/help_texts.py:141
669
+ #: lino/help_texts.py:143
663
670
  msgid "Used to collaborate with a restful Ext.data.Store."
664
671
  msgstr ""
665
672
 
666
- #: lino/help_texts.py:142
667
- msgid ""
668
- "The view that responds to "
669
- "r'api/(?P<app_label>\\w+)/(?P<actor>\\w+)/(?P<pk>[^/]+)$'."
673
+ #: lino/help_texts.py:144
674
+ msgid "The view that responds to api/app_label/actor/pk."
670
675
  msgstr ""
671
676
 
672
- #: lino/help_texts.py:143 lino/help_texts.py:153
677
+ #: lino/help_texts.py:145 lino/help_texts.py:155
673
678
  msgid "Base class for this plugin."
674
679
  msgstr ""
675
680
 
676
- #: lino/help_texts.py:146
681
+ #: lino/help_texts.py:148
677
682
  msgid "This is being called from lino.core.kernel.Kernel.kernel_startup()."
678
683
  msgstr ""
679
684
 
680
- #: lino/help_texts.py:147
685
+ #: lino/help_texts.py:149
681
686
  msgid ""
682
687
  "Return a list of possible choices for a field that contains a template "
683
688
  "name."
684
689
  msgstr ""
685
690
 
686
- #: lino/help_texts.py:148
691
+ #: lino/help_texts.py:150
687
692
  msgid "Render the named Jinja template using an incoming HTTP request."
688
693
  msgstr ""
689
694
 
690
- #: lino/help_texts.py:149
695
+ #: lino/help_texts.py:151
691
696
  msgid "Render the named Jinja template using the given action request ar."
692
697
  msgstr ""
693
698
 
694
- #: lino/help_texts.py:150
699
+ #: lino/help_texts.py:152
695
700
  msgid ""
696
701
  "Render the named Jinja template, replacing ar.renderer by the Jinja "
697
702
  "renderer."
698
703
  msgstr ""
699
704
 
700
- #: lino/help_texts.py:151
705
+ #: lino/help_texts.py:153
701
706
  msgid ""
702
707
  "used e.g. to render https://gitlab.com/lino-"
703
708
  "framework/lino/blob/master//lino/lino/config/500.html"
704
709
  msgstr ""
705
710
 
706
- #: lino/help_texts.py:154
711
+ #: lino/help_texts.py:156
707
712
  msgid "An instance of lino.modlib.memo.parser.Parser."
708
713
  msgstr ""
709
714
 
710
- #: lino/help_texts.py:155
715
+ #: lino/help_texts.py:157
711
716
  msgid "The front end to use when writing previews."
712
717
  msgstr ""
713
718
 
714
- #: lino/help_texts.py:156
719
+ #: lino/help_texts.py:158
715
720
  msgid "Holds the configuration for the behaviour of a given “trigger”."
716
721
  msgstr ""
717
722
 
718
- #: lino/help_texts.py:157
723
+ #: lino/help_texts.py:159
719
724
  msgid "The memo parser."
720
725
  msgstr ""
721
726
 
722
- #: lino/help_texts.py:158
727
+ #: lino/help_texts.py:160
723
728
  msgid "Add a Suggester (see there for args and kwargs)."
724
729
  msgstr ""
725
730
 
726
- #: lino/help_texts.py:159
731
+ #: lino/help_texts.py:161
727
732
  msgid "Register a memo command identified by the given text cmd."
728
733
  msgstr ""
729
734
 
730
- #: lino/help_texts.py:160
735
+ #: lino/help_texts.py:162
731
736
  msgid ""
732
737
  "Register the given string name as command for referring to database rows "
733
738
  "of the given Django database model model."
734
739
  msgstr ""
735
740
 
736
- #: lino/help_texts.py:161
741
+ #: lino/help_texts.py:163
737
742
  msgid "Yield all database objects referred in the given text using a suggester."
738
743
  msgstr ""
739
744
 
740
- #: lino/help_texts.py:162
745
+ #: lino/help_texts.py:164
741
746
  msgid "Parse the given string src, replacing memo commands by their result."
742
747
  msgstr ""
743
748
 
744
- #: lino/help_texts.py:167
749
+ #: lino/help_texts.py:169
745
750
  msgid "The domain name of this production site."
746
751
  msgstr ""
747
752
 
748
- #: lino/help_texts.py:168
753
+ #: lino/help_texts.py:170
749
754
  msgid "The initial width of the window to use when editing in own window."
750
755
  msgstr ""
751
756
 
752
- #: lino/help_texts.py:169
757
+ #: lino/help_texts.py:171
753
758
  msgid "The initial height of the window to use when editing in own window."
754
759
  msgstr ""
755
760
 
756
- #: lino/help_texts.py:170
761
+ #: lino/help_texts.py:172
757
762
  msgid "The toolbar buttons when editing a field inside a detail form."
758
763
  msgstr ""
759
764
 
760
- #: lino/help_texts.py:171
765
+ #: lino/help_texts.py:173
761
766
  msgid "The first row of toolbar buttons when editing in own window."
762
767
  msgstr ""
763
768
 
764
- #: lino/help_texts.py:172
769
+ #: lino/help_texts.py:174
765
770
  msgid "The second row of toolbar buttons when editing in own window."
766
771
  msgstr ""
767
772
 
768
- #: lino/help_texts.py:173
773
+ #: lino/help_texts.py:175
769
774
  msgid "The third row of toolbar buttons when editing in own window."
770
775
  msgstr ""
771
776
 
772
- #: lino/help_texts.py:174
777
+ #: lino/help_texts.py:176
773
778
  msgid ""
774
779
  "Lino currently includes three versions of TinyMCE, but for production "
775
780
  "sites we still use the eldest version 3.4.8."
776
781
  msgstr ""
777
782
 
778
- #: lino/help_texts.py:176
779
- msgid "Height of header in mm. Set to None if you want no header."
780
- msgstr ""
781
-
782
- #: lino/help_texts.py:177
783
- msgid "Height of footer in mm. Set to None if you want no header."
784
- msgstr ""
785
-
786
783
  #: lino/help_texts.py:178
787
784
  msgid ""
788
- "Width of top-right.jpg in mm. If not given, Lino computes it based on "
789
- "height."
790
- msgstr ""
791
-
792
- #: lino/help_texts.py:179
793
- msgid ""
794
- "The first image file found in config named either top-right.jpg or top-"
795
- "right.png."
796
- msgstr ""
797
-
798
- #: lino/help_texts.py:180
799
- msgid ""
800
- "The first image file found in config named either header.jpg or "
801
- "header.png."
802
- msgstr ""
803
-
804
- #: lino/help_texts.py:181
805
- msgid "Top and bottom page margin in mm."
806
- msgstr ""
807
-
808
- #: lino/help_texts.py:183
809
- msgid ""
810
785
  "Tell Sphinx to switch to the specified language until the end of this "
811
786
  "document."
812
787
  msgstr ""
813
788
 
814
- #: lino/help_texts.py:184
789
+ #: lino/help_texts.py:179
815
790
  msgid ""
816
791
  "Tell Sphinx to switch to the specified project until the end of this "
817
792
  "document."
818
793
  msgstr ""
819
794
 
820
- #: lino/help_texts.py:185
795
+ #: lino/help_texts.py:180
821
796
  msgid "Defines the lino2rst directive."
822
797
  msgstr ""
823
798
 
824
- #: lino/help_texts.py:186
799
+ #: lino/help_texts.py:181
825
800
  msgid "Dictionary-like helper object."
826
801
  msgstr ""
827
802
 
828
- #: lino/help_texts.py:187
803
+ #: lino/help_texts.py:182
829
804
  msgid "args must be a series of names followed by the value"
830
805
  msgstr ""
831
806
 
832
- #: lino/help_texts.py:188
807
+ #: lino/help_texts.py:183
833
808
  msgid "return an attribute with dotted name"
834
809
  msgstr ""
835
810
 
836
- #: lino/help_texts.py:189
811
+ #: lino/help_texts.py:184
837
812
  msgid "Naive representation of a potentially incomplete gregorian date."
838
813
  msgstr ""
839
814
 
840
- #: lino/help_texts.py:190
815
+ #: lino/help_texts.py:185
841
816
  msgid "Parse the given string and return an IncompleteDate object."
842
817
  msgstr ""
843
818
 
844
- #: lino/help_texts.py:191
819
+ #: lino/help_texts.py:186
845
820
  msgid "Return age in years as integer."
846
821
  msgstr ""
847
822
 
848
- #: lino/help_texts.py:192
849
- msgid "A dictionary of sums to be collected using an arbitrary key."
850
- msgstr ""
851
-
852
- #: lino/help_texts.py:193
853
- msgid "Add the given value to the sum at the given key k."
854
- msgstr ""
855
-
856
- #: lino/help_texts.py:194
823
+ #: lino/help_texts.py:187
857
824
  msgid "Represents a database row that is expected to exist but doesn’t."
858
825
  msgstr ""
859
826
 
860
- #: lino/help_texts.py:195
827
+ #: lino/help_texts.py:188
861
828
  msgid ""
862
829
  "General mixin (not only for Django models) to encapsulate the generating "
863
830
  "of “traditional” (“snail”) mail addresses."
864
831
  msgstr ""
865
832
 
866
- #: lino/help_texts.py:196
833
+ #: lino/help_texts.py:189
867
834
  msgid "Yield one or more text lines, one for each line of the person part."
868
835
  msgstr ""
869
836
 
870
- #: lino/help_texts.py:197
837
+ #: lino/help_texts.py:190
871
838
  msgid "Yield one or more text lines, one for each line of the location part."
872
839
  msgstr ""
873
840
 
874
- #: lino/help_texts.py:198
841
+ #: lino/help_texts.py:191
875
842
  msgid "Yield a series of text lines, one for each line of the address."
876
843
  msgstr ""
877
844
 
878
- #: lino/help_texts.py:199
845
+ #: lino/help_texts.py:192
879
846
  msgid ""
880
847
  "The plain text full postal address (person and location). Lines are "
881
848
  "separated by linesep, which defaults to a newline."
882
849
  msgstr ""
883
850
 
884
- #: lino/help_texts.py:200
851
+ #: lino/help_texts.py:193
885
852
  msgid ""
886
853
  "Return the full postal address as a text containing simple html markup "
887
854
  "with a single paragraph (<p>)."
888
855
  msgstr ""
889
856
 
890
- #: lino/help_texts.py:201
857
+ #: lino/help_texts.py:194
891
858
  msgid "Returns True if the address location is non empty."
892
859
  msgstr ""
893
860
 
894
- #: lino/help_texts.py:202
861
+ #: lino/help_texts.py:195
895
862
  msgid "Used only for testing."
896
863
  msgstr ""
897
864
 
898
- #: lino/help_texts.py:203
865
+ #: lino/help_texts.py:196
899
866
  msgid "The middleware class definition."
900
867
  msgstr ""
901
868
 
902
- #: lino/help_texts.py:204
869
+ #: lino/help_texts.py:197
903
870
  msgid ""
904
871
  "A Converter for ForeignKey and ManyToManyField. If the lookup_field is a "
905
872
  "BabelField, then it tries all available languages."
906
873
  msgstr ""
907
874
 
908
- #: lino/help_texts.py:205
875
+ #: lino/help_texts.py:198
909
876
  msgid "Converter for ChoiceListField."
910
877
  msgstr ""
911
878
 
912
- #: lino/help_texts.py:206
879
+ #: lino/help_texts.py:199
913
880
  msgid "Converter for ForeignKey fields."
914
881
  msgstr ""
915
882
 
916
- #: lino/help_texts.py:207
883
+ #: lino/help_texts.py:200
917
884
  msgid "Converter for GenericForeignKey fields."
918
885
  msgstr ""
919
886
 
920
- #: lino/help_texts.py:208
887
+ #: lino/help_texts.py:201
921
888
  msgid "Converter for ManyToMany fields."
922
889
  msgstr ""
923
890
 
924
- #: lino/help_texts.py:209
891
+ #: lino/help_texts.py:202
925
892
  msgid "Holds information about the possible choices of a field."
926
893
  msgstr ""
927
894
 
928
- #: lino/help_texts.py:210
895
+ #: lino/help_texts.py:203
929
896
  msgid ""
930
897
  "Calls dd.Actor.get_data_elem() or dd.Model.get_data_elem() or "
931
898
  "dd.Action.get_data_elem()."
932
899
  msgstr ""
933
900
 
934
- #: lino/help_texts.py:211
901
+ #: lino/help_texts.py:204
935
902
  msgid ""
936
903
  "Return a list of choices for this chooser, using keyword parameters as "
937
904
  "context."
938
905
  msgstr ""
939
906
 
940
- #: lino/help_texts.py:212
907
+ #: lino/help_texts.py:205
941
908
  msgid ""
942
909
  "Return a list of choices for this chooser, using a HttpRequest to build "
943
910
  "the context."
944
911
  msgstr ""
945
912
 
946
- #: lino/help_texts.py:213
913
+ #: lino/help_texts.py:206
947
914
  msgid "A directory that may contain configuration files."
948
915
  msgstr ""
949
916
 
950
- #: lino/help_texts.py:214
917
+ #: lino/help_texts.py:207
951
918
  msgid ""
952
919
  "An iterator that loops over an iteration and starts back at the beginning"
953
920
  " when it reaches the end."
954
921
  msgstr ""
955
922
 
956
- #: lino/help_texts.py:215
923
+ #: lino/help_texts.py:208
957
924
  msgid ""
958
925
  "If you have an existing Django management command, just rename it’s "
959
926
  "handle method to handle_daemon and inherit from this instead of "
960
927
  "django.core.management.base.BaseCommand."
961
928
  msgstr ""
962
929
 
963
- #: lino/help_texts.py:216
930
+ #: lino/help_texts.py:209
964
931
  msgid ""
965
932
  "The loggers to preserve. If not None, this should be a list of loggers "
966
933
  "(logging.Logger instances) whose file handles should not get closed."
967
934
  msgstr ""
968
935
 
969
- #: lino/help_texts.py:217
936
+ #: lino/help_texts.py:210
970
937
  msgid "Takes the options and starts a daemon context from them."
971
938
  msgstr ""
972
939
 
973
- #: lino/help_texts.py:218
940
+ #: lino/help_texts.py:211
974
941
  msgid ""
975
942
  "loaddata requires DeserializedObject instances, but this Deserializer "
976
943
  "does not bypass pre_save/save methods."
977
944
  msgstr ""
978
945
 
979
- #: lino/help_texts.py:219
946
+ #: lino/help_texts.py:212
980
947
  msgid "A named tuple with two fields start_date and end_date."
981
948
  msgstr ""
982
949
 
983
- #: lino/help_texts.py:220 lino/help_texts.py:300
950
+ #: lino/help_texts.py:213 lino/help_texts.py:295
984
951
  msgid "Alias for field number 1"
985
952
  msgstr ""
986
953
 
987
- #: lino/help_texts.py:221 lino/help_texts.py:301
954
+ #: lino/help_texts.py:214 lino/help_texts.py:296
988
955
  msgid "Alias for field number 0"
989
956
  msgstr ""
990
957
 
991
- #: lino/help_texts.py:222
958
+ #: lino/help_texts.py:215
992
959
  msgid "Represents a single DBF file."
993
960
  msgstr ""
994
961
 
995
- #: lino/help_texts.py:223
962
+ #: lino/help_texts.py:216
996
963
  msgid "Represents a field in a DBF file."
997
964
  msgstr ""
998
965
 
999
- #: lino/help_texts.py:224
966
+ #: lino/help_texts.py:217
1000
967
  msgid "Represents an FPT block file"
1001
968
  msgstr ""
1002
969
 
1003
- #: lino/help_texts.py:225
970
+ #: lino/help_texts.py:218
1004
971
  msgid "Represents a DBT block file"
1005
972
  msgstr ""
1006
973
 
1007
- #: lino/help_texts.py:226
974
+ #: lino/help_texts.py:219
1008
975
  msgid "The class of the lino.utils.diag.analyzer object."
1009
976
  msgstr ""
1010
977
 
1011
- #: lino/help_texts.py:227
978
+ #: lino/help_texts.py:220
1012
979
  msgid "List all window actions and the form fields they contain."
1013
980
  msgstr ""
1014
981
 
1015
- #: lino/help_texts.py:228
982
+ #: lino/help_texts.py:221
1016
983
  msgid "List all window actions and the user types that can see them."
1017
984
  msgstr ""
1018
985
 
1019
- #: lino/help_texts.py:229
986
+ #: lino/help_texts.py:222
1020
987
  msgid "List the memo commands defined in this application."
1021
988
  msgstr ""
1022
989
 
1023
- #: lino/help_texts.py:230
990
+ #: lino/help_texts.py:223
1024
991
  msgid "Show a bullet list of all models and their fields."
1025
992
  msgstr ""
1026
993
 
1027
- #: lino/help_texts.py:231
994
+ #: lino/help_texts.py:224
1028
995
  msgid ""
1029
996
  "Print a reStructredText-formatted “database overview” report. Used by "
1030
997
  "test cases in tested documents."
1031
998
  msgstr ""
1032
999
 
1033
- #: lino/help_texts.py:232
1000
+ #: lino/help_texts.py:225
1034
1001
  msgid ""
1035
1002
  "Return a list that shows how database objects are being referred to by "
1036
1003
  "some other database object. This information is important (1) before "
1037
1004
  "deleting objects and (2) when merging them."
1038
1005
  msgstr ""
1039
1006
 
1040
- #: lino/help_texts.py:233
1007
+ #: lino/help_texts.py:226
1041
1008
  msgid ""
1042
1009
  "Yield a series of plain text lines that describe the complexity factors "
1043
1010
  "of this application."
1044
1011
  msgstr ""
1045
1012
 
1046
- #: lino/help_texts.py:234
1013
+ #: lino/help_texts.py:227
1047
1014
  msgid "Adds some extensions to the Django TestCase."
1048
1015
  msgstr ""
1049
1016
 
1050
- #: lino/help_texts.py:235
1017
+ #: lino/help_texts.py:228
1051
1018
  msgid ""
1052
1019
  "If specified, this is a dict of Site attributes to override before "
1053
1020
  "running the test."
1054
1021
  msgstr ""
1055
1022
 
1056
- #: lino/help_texts.py:236
1023
+ #: lino/help_texts.py:229
1057
1024
  msgid "When you decorate your subclass of TestCase, you must also specify:"
1058
1025
  msgstr ""
1059
1026
 
1060
- #: lino/help_texts.py:237
1027
+ #: lino/help_texts.py:230
1061
1028
  msgid ""
1062
1029
  "Checks whether the specified expected SQL queries match to those who "
1063
1030
  "actually have been emitted."
1064
1031
  msgstr ""
1065
1032
 
1066
- #: lino/help_texts.py:238
1033
+ #: lino/help_texts.py:231
1067
1034
  msgid ""
1068
1035
  "Send a GET or POST or PUT to client with given username, url and data. "
1069
1036
  "The server is expected to respond with a JSON encoded response. Parse the"
@@ -1071,80 +1038,80 @@ msgid ""
1071
1038
  "dict to an AttrDict before returning it."
1072
1039
  msgstr ""
1073
1040
 
1074
- #: lino/help_texts.py:239
1041
+ #: lino/help_texts.py:232
1075
1042
  msgid ""
1076
1043
  "Check wether the given dialog runs as expected and return the final "
1077
1044
  "response as an AttrDict."
1078
1045
  msgstr ""
1079
1046
 
1080
- #: lino/help_texts.py:240
1047
+ #: lino/help_texts.py:233
1081
1048
  msgid ""
1082
1049
  "Base class for tests that use remote http authentication. We override the"
1083
1050
  " __call__() method in order to simulate remote_user_header "
1084
1051
  "<lino.core.site.Site.remote_user_header> being set to 'REMOTE_USER'."
1085
1052
  msgstr ""
1086
1053
 
1087
- #: lino/help_texts.py:241
1054
+ #: lino/help_texts.py:234
1088
1055
  msgid "alias of RemoteAuthTestCase"
1089
1056
  msgstr ""
1090
1057
 
1091
- #: lino/help_texts.py:242
1058
+ #: lino/help_texts.py:235
1092
1059
  msgid "Used for testing migrations from previous versions."
1093
1060
  msgstr ""
1094
1061
 
1095
- #: lino/help_texts.py:243
1062
+ #: lino/help_texts.py:236
1096
1063
  msgid ""
1097
1064
  "A list of strings, each string is a version for which there must be a "
1098
1065
  "migration dump created by makemigdump."
1099
1066
  msgstr ""
1100
1067
 
1101
- #: lino/help_texts.py:244
1068
+ #: lino/help_texts.py:237
1102
1069
  msgid "Imitates DeserializedObject required by loaddata."
1103
1070
  msgstr ""
1104
1071
 
1105
- #: lino/help_texts.py:245
1072
+ #: lino/help_texts.py:238
1106
1073
  msgid ""
1107
1074
  "Try to save the specified Model instance obj. Return True on success, "
1108
1075
  "False if this instance wasn’t saved and should be deferred."
1109
1076
  msgstr ""
1110
1077
 
1111
- #: lino/help_texts.py:246
1078
+ #: lino/help_texts.py:239
1112
1079
  msgid "Serializes a QuerySet to a py stream."
1113
1080
  msgstr ""
1114
1081
 
1115
- #: lino/help_texts.py:247
1082
+ #: lino/help_texts.py:240
1116
1083
  msgid ""
1117
1084
  "Indicator class object. Fixture may yield a FlushDeferredObjects to "
1118
1085
  "indicate that all deferred objects should get saved before going on."
1119
1086
  msgstr ""
1120
1087
 
1121
- #: lino/help_texts.py:248
1088
+ #: lino/help_texts.py:241
1122
1089
  msgid "Instantiated by restore.py."
1123
1090
  msgstr ""
1124
1091
 
1125
- #: lino/help_texts.py:249
1092
+ #: lino/help_texts.py:242
1126
1093
  msgid "The Django deserializer for dpy."
1127
1094
  msgstr ""
1128
1095
 
1129
- #: lino/help_texts.py:250
1096
+ #: lino/help_texts.py:243
1130
1097
  msgid "The SITE’s Migrator class is instantiated by install_migrations."
1131
1098
  msgstr ""
1132
1099
 
1133
- #: lino/help_texts.py:251
1100
+ #: lino/help_texts.py:244
1134
1101
  msgid "Declare a function to be called after all data has been loaded."
1135
1102
  msgstr ""
1136
1103
 
1137
- #: lino/help_texts.py:252
1104
+ #: lino/help_texts.py:245
1138
1105
  msgid "Declare a function to be called before loading dumped data."
1139
1106
  msgstr ""
1140
1107
 
1141
- #: lino/help_texts.py:253
1108
+ #: lino/help_texts.py:246
1142
1109
  msgid ""
1143
1110
  "A utility class to make python fixtures more compact. See "
1144
1111
  "tutorial.instantiator."
1145
1112
  msgstr ""
1146
1113
 
1147
- #: lino/help_texts.py:254
1114
+ #: lino/help_texts.py:247
1148
1115
  msgid ""
1149
1116
  "Instantiate an object using the default values of this instantiator, "
1150
1117
  "overridden by the given specified values. The number of positional "
@@ -1152,129 +1119,137 @@ msgid ""
1152
1119
  " this Instantiator."
1153
1120
  msgstr ""
1154
1121
 
1155
- #: lino/help_texts.py:255
1122
+ #: lino/help_texts.py:248
1156
1123
  msgid "Usage example see lino_xl.lib.humanlinks.fixtures."
1157
1124
  msgstr ""
1158
1125
 
1159
- #: lino/help_texts.py:256
1126
+ #: lino/help_texts.py:249
1160
1127
  msgid "Represents a counter. Usage see"
1161
1128
  msgstr ""
1162
1129
 
1163
- #: lino/help_texts.py:257
1130
+ #: lino/help_texts.py:250
1164
1131
  msgid "A string that py2js will represent as is, not between quotes."
1165
1132
  msgstr ""
1166
1133
 
1167
- #: lino/help_texts.py:258
1134
+ #: lino/help_texts.py:251
1168
1135
  msgid ""
1169
1136
  "A Component is a Variable whose value is a dict of options. Deserves more"
1170
1137
  " documentation."
1171
1138
  msgstr ""
1172
1139
 
1173
- #: lino/help_texts.py:259
1140
+ #: lino/help_texts.py:252
1174
1141
  msgid "Walk over this component and its children."
1175
1142
  msgstr ""
1176
1143
 
1177
- #: lino/help_texts.py:260
1144
+ #: lino/help_texts.py:253
1178
1145
  msgid "A visible component"
1179
1146
  msgstr ""
1180
1147
 
1181
- #: lino/help_texts.py:261
1148
+ #: lino/help_texts.py:254
1182
1149
  msgid ""
1183
1150
  "Define the allow_read handler used by get_view_permission(). This must be"
1184
1151
  " done only once, but after having configured debug_permissions and "
1185
1152
  "required_roles."
1186
1153
  msgstr ""
1187
1154
 
1188
- #: lino/help_texts.py:262
1155
+ #: lino/help_texts.py:255
1189
1156
  msgid ""
1190
1157
  "Represents a file on the server below MEDIA_ROOT with two properties path"
1191
1158
  " and url."
1192
1159
  msgstr ""
1193
1160
 
1194
- #: lino/help_texts.py:263
1161
+ #: lino/help_texts.py:256
1162
+ msgid "A pathlib.Path naming the file on the server’s file system."
1163
+ msgstr ""
1164
+
1165
+ #: lino/help_texts.py:257
1166
+ msgid "The URL to use for getting this file from a web client."
1167
+ msgstr ""
1168
+
1169
+ #: lino/help_texts.py:258
1195
1170
  msgid ""
1196
1171
  "Define a variable number of CharField database fields, one for each "
1197
1172
  "language of your lino.core.site.Site.languages. See mldbc."
1198
1173
  msgstr ""
1199
1174
 
1200
- #: lino/help_texts.py:264
1175
+ #: lino/help_texts.py:259
1201
1176
  msgid ""
1202
1177
  "Used for the clones of the master field, one for each non-default "
1203
1178
  "language. See mldbc."
1204
1179
  msgstr ""
1205
1180
 
1206
- #: lino/help_texts.py:265
1181
+ #: lino/help_texts.py:260
1207
1182
  msgid ""
1208
1183
  "A field that lets the user select a language from the available "
1209
1184
  "lino.core.site.Site.languages."
1210
1185
  msgstr ""
1211
1186
 
1212
- #: lino/help_texts.py:266
1187
+ #: lino/help_texts.py:261
1213
1188
  msgid ""
1214
1189
  "Mixin for models that have a babel field name (labelled “Designation” by "
1215
1190
  "default) for each language."
1216
1191
  msgstr ""
1217
1192
 
1218
- #: lino/help_texts.py:267 lino/help_texts.py:269
1193
+ #: lino/help_texts.py:262 lino/help_texts.py:264
1219
1194
  msgid "The translatable name of this database row."
1220
1195
  msgstr ""
1221
1196
 
1222
- #: lino/help_texts.py:268
1197
+ #: lino/help_texts.py:263
1223
1198
  msgid ""
1224
1199
  "Mixin for models that have a babel field “Designation” (i.e. one "
1225
1200
  "designation for each language defined in the site’s languages."
1226
1201
  msgstr ""
1227
1202
 
1228
- #: lino/help_texts.py:270
1203
+ #: lino/help_texts.py:265
1229
1204
  msgid "A Collector that does not delete the MTI parents."
1230
1205
  msgstr ""
1231
1206
 
1232
- #: lino/help_texts.py:271
1207
+ #: lino/help_texts.py:266
1233
1208
  msgid ""
1234
1209
  "Rendered as a checkbox that indicates whether an mti child of the given "
1235
1210
  "model exists."
1236
1211
  msgstr ""
1237
1212
 
1238
- #: lino/help_texts.py:272
1213
+ #: lino/help_texts.py:267
1239
1214
  msgid ""
1240
1215
  "When a FormLayout is inherited by an MTI child, EnableChild fields must "
1241
1216
  "be disabled."
1242
1217
  msgstr ""
1243
1218
 
1244
- #: lino/help_texts.py:273
1219
+ #: lino/help_texts.py:268
1245
1220
  msgid ""
1246
1221
  "Returns True if obj has an MTI child in self.child_model. The optional "
1247
1222
  "2nd argument request (passed from VirtualField.value_from_object) is "
1248
1223
  "ignored."
1249
1224
  msgstr ""
1250
1225
 
1251
- #: lino/help_texts.py:274
1226
+ #: lino/help_texts.py:269
1252
1227
  msgid ""
1253
1228
  "Abstract base class. For each .ods file you are probably creating a "
1254
1229
  "subclass of this."
1255
1230
  msgstr ""
1256
1231
 
1257
- #: lino/help_texts.py:275
1232
+ #: lino/help_texts.py:270
1258
1233
  msgid "The full path name of the .ods file to be read."
1259
1234
  msgstr ""
1260
1235
 
1261
- #: lino/help_texts.py:276
1236
+ #: lino/help_texts.py:271
1262
1237
  msgid ""
1263
1238
  "A list of unicode strings, one for each column in the file. The headers "
1264
1239
  "specified here must match exactly those found in the .ods file."
1265
1240
  msgstr ""
1266
1241
 
1267
- #: lino/help_texts.py:277
1242
+ #: lino/help_texts.py:272
1268
1243
  msgid ""
1269
1244
  "This will be called for each recognized data row and may perform a "
1270
1245
  "conversion before yielding it. Subclasses may override this."
1271
1246
  msgstr ""
1272
1247
 
1273
- #: lino/help_texts.py:278
1248
+ #: lino/help_texts.py:273
1274
1249
  msgid "Yields the data rows found in this .ods file."
1275
1250
  msgstr ""
1276
1251
 
1277
- #: lino/help_texts.py:279
1252
+ #: lino/help_texts.py:274
1278
1253
  msgid ""
1279
1254
  "Like SimpleOdsReader, but each row is converted to an "
1280
1255
  "lino.utils.AttrDict. This requires you to specifiy, besides the "
@@ -1282,258 +1257,281 @@ msgid ""
1282
1257
  "which must be valid Python attribute names."
1283
1258
  msgstr ""
1284
1259
 
1285
- #: lino/help_texts.py:280
1260
+ #: lino/help_texts.py:275
1286
1261
  msgid ""
1287
1262
  "An extended atelier.test.TestCase to be run using setup.py in the root of"
1288
1263
  " a project that may contain several Django projects."
1289
1264
  msgstr ""
1290
1265
 
1291
- #: lino/help_texts.py:281
1266
+ #: lino/help_texts.py:276
1292
1267
  msgid ""
1293
1268
  "The DJANGO_SETTINGS_MODULE to set for each subprocess launched by this "
1294
1269
  "test case."
1295
1270
  msgstr ""
1296
1271
 
1297
- #: lino/help_texts.py:282
1272
+ #: lino/help_texts.py:277
1298
1273
  msgid "Run python manage.py test command in the given directory."
1299
1274
  msgstr ""
1300
1275
 
1301
- #: lino/help_texts.py:283
1276
+ #: lino/help_texts.py:278
1302
1277
  msgid "Run django-admin.py test in the given directory."
1303
1278
  msgstr ""
1304
1279
 
1305
- #: lino/help_texts.py:284
1280
+ #: lino/help_texts.py:279
1306
1281
  msgid "Run django-admin.py CMD in the given directory."
1307
1282
  msgstr ""
1308
1283
 
1309
- #: lino/help_texts.py:285
1284
+ #: lino/help_texts.py:280
1310
1285
  msgid ""
1311
1286
  "Run a simple doctest for specified file after importing the docs conf.py "
1312
1287
  "(which causes the demo database to be activated)."
1313
1288
  msgstr ""
1314
1289
 
1315
- #: lino/help_texts.py:286
1290
+ #: lino/help_texts.py:281
1316
1291
  msgid "Run test and demotest in a subprocess in the given demo project."
1317
1292
  msgstr ""
1318
1293
 
1319
- #: lino/help_texts.py:287
1294
+ #: lino/help_texts.py:282
1320
1295
  msgid "Base class for virtual rows of an EmptyTable. An EmptyTableRow instance"
1321
1296
  msgstr ""
1322
1297
 
1323
- #: lino/help_texts.py:288
1298
+ #: lino/help_texts.py:283
1324
1299
  msgid "Overrides lino.modlib.printing.mixins.Printable.get_print_templates()"
1325
1300
  msgstr ""
1326
1301
 
1327
- #: lino/help_texts.py:289
1302
+ #: lino/help_texts.py:284
1328
1303
  msgid ""
1329
1304
  "A “Table” that has exactly one virtual row and thus is visible only using"
1330
1305
  " a Detail view on that row."
1331
1306
  msgstr ""
1332
1307
 
1333
- #: lino/help_texts.py:290
1308
+ #: lino/help_texts.py:285
1334
1309
  msgid "Called from EmptyTableRow."
1335
1310
  msgstr ""
1336
1311
 
1337
- #: lino/help_texts.py:291
1312
+ #: lino/help_texts.py:286
1338
1313
  msgid ""
1339
1314
  "A special kind of EmptyTable used to create “reports”. A report is a "
1340
1315
  "series of headings, paragraphs and tables combined into a single "
1341
1316
  "printable and previewable document."
1342
1317
  msgstr ""
1343
1318
 
1344
- #: lino/help_texts.py:292
1319
+ #: lino/help_texts.py:287
1345
1320
  msgid ""
1346
1321
  "Yield a sequence of story items. Every item can be (1) an ElementTree "
1347
1322
  "element or (2) a table or (3) an action request."
1348
1323
  msgstr ""
1349
1324
 
1350
- #: lino/help_texts.py:293
1325
+ #: lino/help_texts.py:288
1351
1326
  msgid "Suppress surrounding DIV tag. Used by restify()."
1352
1327
  msgstr ""
1353
1328
 
1354
- #: lino/help_texts.py:294
1329
+ #: lino/help_texts.py:289
1355
1330
  msgid "Log all SQL statements direct to the console."
1356
1331
  msgstr ""
1357
1332
 
1358
- #: lino/help_texts.py:295
1333
+ #: lino/help_texts.py:290
1359
1334
  msgid ""
1360
1335
  "Log all SQL statements to the console. Intended for use with the django "
1361
1336
  "development server."
1362
1337
  msgstr ""
1363
1338
 
1364
- #: lino/help_texts.py:296
1339
+ #: lino/help_texts.py:291
1365
1340
  msgid ""
1366
1341
  "Log a summary of the SQL statements made to the console. Intended for use"
1367
1342
  " with the django development server."
1368
1343
  msgstr ""
1369
1344
 
1370
- #: lino/help_texts.py:297
1345
+ #: lino/help_texts.py:292
1371
1346
  msgid "Alias for field number 3"
1372
1347
  msgstr ""
1373
1348
 
1374
- #: lino/help_texts.py:298
1349
+ #: lino/help_texts.py:293
1375
1350
  msgid "Alias for field number 2"
1376
1351
  msgstr ""
1377
1352
 
1378
- #: lino/help_texts.py:299
1353
+ #: lino/help_texts.py:294
1379
1354
  msgid "Alias for field number 4"
1380
1355
  msgstr ""
1381
1356
 
1382
- #: lino/help_texts.py:302
1357
+ #: lino/help_texts.py:297
1383
1358
  msgid ""
1384
1359
  "A unittest.TestCase (not a django.test.TestCase) that starts a Django "
1385
1360
  "test client on a demo database populated using pm prep."
1386
1361
  msgstr ""
1387
1362
 
1388
- #: lino/help_texts.py:303
1363
+ #: lino/help_texts.py:298
1389
1364
  msgid ""
1390
1365
  "Create the given database object, run full_clean() and save(), return the"
1391
1366
  " object."
1392
1367
  msgstr ""
1393
1368
 
1394
- #: lino/help_texts.py:304
1369
+ #: lino/help_texts.py:299
1395
1370
  msgid ""
1396
1371
  "Checks the result of response which is expected to return a JSON-encoded "
1397
1372
  "dictionary with the expected_keys."
1398
1373
  msgstr ""
1399
1374
 
1400
- #: lino/help_texts.py:305
1375
+ #: lino/help_texts.py:300
1401
1376
  msgid ""
1402
1377
  "Compares two strings a (expected) and b (got), ignoring whitespace "
1403
1378
  "repetitions and writing a logger message in case they are different. For "
1404
1379
  "long strings it’s then more easy to find the difference."
1405
1380
  msgstr ""
1406
1381
 
1407
- #: lino/help_texts.py:306
1382
+ #: lino/help_texts.py:301
1408
1383
  msgid ""
1409
1384
  "Sends a PUT request using Django’s test client, overriding the "
1410
1385
  "content_type keyword. This is how ExtJS grids behave by default."
1411
1386
  msgstr ""
1412
1387
 
1413
- #: lino/help_texts.py:307
1388
+ #: lino/help_texts.py:302
1414
1389
  msgid ""
1415
1390
  "Looks for a file “index.rst” in your project_dir and (if it exists) runs "
1416
1391
  "doctest on it."
1417
1392
  msgstr ""
1418
1393
 
1419
- #: lino/help_texts.py:308
1394
+ #: lino/help_texts.py:303
1420
1395
  msgid "The files to be tested."
1421
1396
  msgstr ""
1422
1397
 
1423
- #: lino/help_texts.py:309
1398
+ #: lino/help_texts.py:304
1424
1399
  msgid ""
1425
1400
  "Base class for unit tests that are meant to run directly in a demo "
1426
1401
  "project that has been initialized with pm prep."
1427
1402
  msgstr ""
1428
1403
 
1429
- #: lino/help_texts.py:310
1404
+ #: lino/help_texts.py:305
1430
1405
  msgid ""
1431
1406
  "Invoke the lino.modlib.users.SignIn action for the given username and "
1432
1407
  "password. Unlike django.test.Client.force_login(), this simulates a real "
1433
1408
  "login, which later causes Lino to build the JS cache for this user."
1434
1409
  msgstr ""
1435
1410
 
1436
- #: lino/help_texts.py:311
1411
+ #: lino/help_texts.py:306
1437
1412
  msgid "Iterator that reads an encoded stream and reencodes the input to UTF-8"
1438
1413
  msgstr ""
1439
1414
 
1440
- #: lino/help_texts.py:312
1415
+ #: lino/help_texts.py:307
1441
1416
  msgid ""
1442
1417
  "A CSV reader which will iterate over lines in the CSV file “f”, which is "
1443
1418
  "encoded in the given encoding."
1444
1419
  msgstr ""
1445
1420
 
1446
- #: lino/help_texts.py:313
1421
+ #: lino/help_texts.py:308
1447
1422
  msgid ""
1448
1423
  "A CSV writer which will write rows to CSV file “f”, which is encoded in "
1449
1424
  "the given encoding."
1450
1425
  msgstr ""
1451
1426
 
1452
- #: lino/help_texts.py:314
1427
+ #: lino/help_texts.py:309
1453
1428
  msgid ""
1454
1429
  "Return a veto message if you want to refuse creating rows on this model "
1455
1430
  "in the given action request even when permission has been given."
1456
1431
  msgstr ""
1457
1432
 
1458
- #: lino/help_texts.py:315
1433
+ #: lino/help_texts.py:310
1459
1434
  msgid "Override this to set default values that depend on the request."
1460
1435
  msgstr ""
1461
1436
 
1462
- #: lino/help_texts.py:316
1437
+ #: lino/help_texts.py:311
1463
1438
  msgid ""
1464
1439
  "Hook to define custom behaviour to run when a user has created a new "
1465
1440
  "instance of this model."
1466
1441
  msgstr ""
1467
1442
 
1468
- #: lino/help_texts.py:317
1443
+ #: lino/help_texts.py:312
1469
1444
  msgid ""
1470
1445
  "The SubmitInsert action to be executed when the when the users submits an"
1471
1446
  " insert window."
1472
1447
  msgstr ""
1473
1448
 
1474
- #: lino/help_texts.py:318
1449
+ #: lino/help_texts.py:313
1475
1450
  msgid ""
1476
1451
  "Called when a learning combo has been submitted. Create a persistent "
1477
1452
  "database object if the given text contains enough information."
1478
1453
  msgstr ""
1479
1454
 
1480
- #: lino/help_texts.py:319
1455
+ #: lino/help_texts.py:314
1481
1456
  msgid ""
1482
1457
  "Return a dict of the fields to fill when the given text contains enough "
1483
1458
  "information for creating a new database object."
1484
1459
  msgstr ""
1485
1460
 
1486
- #: lino/help_texts.py:320
1461
+ #: lino/help_texts.py:315
1487
1462
  msgid ""
1488
1463
  "A set of names of ForeignKey or GenericForeignKey fields of this model "
1489
1464
  "that allow for cascaded delete."
1490
1465
  msgstr ""
1491
1466
 
1492
- #: lino/help_texts.py:321
1467
+ #: lino/help_texts.py:316
1493
1468
  msgid ""
1494
1469
  "Return a set of field names that should be disabled (i.e. not editable) "
1495
1470
  "for this database object."
1496
1471
  msgstr ""
1497
1472
 
1498
- #: lino/help_texts.py:322
1473
+ #: lino/help_texts.py:317
1499
1474
  msgid "Return a translatable text that describes this database row."
1500
1475
  msgstr ""
1501
1476
 
1502
- #: lino/help_texts.py:323
1477
+ #: lino/help_texts.py:318
1503
1478
  msgid ""
1504
1479
  "Return a translatable text that describes this database row. Unlike "
1505
1480
  "__str__() this method gets an action request when it is called, so it "
1506
1481
  "knows the context."
1507
1482
  msgstr ""
1508
1483
 
1509
- #: lino/help_texts.py:324
1484
+ #: lino/help_texts.py:319
1510
1485
  msgid "Yield a series of words that describe this database row in plain text."
1511
1486
  msgstr ""
1512
1487
 
1513
- #: lino/help_texts.py:325
1488
+ #: lino/help_texts.py:320
1514
1489
  msgid ""
1515
1490
  "Return a HTML element that represents this database row in a data window "
1516
1491
  "in display mode “summary”."
1517
1492
  msgstr ""
1518
1493
 
1519
- #: lino/help_texts.py:326
1494
+ #: lino/help_texts.py:321
1520
1495
  msgid ""
1521
1496
  "Return a safe HTML string that represents this database row as a "
1522
1497
  "paragraph."
1523
1498
  msgstr ""
1524
1499
 
1525
- #: lino/help_texts.py:327
1500
+ #: lino/help_texts.py:322
1526
1501
  msgid "Set default values for the widget options of a given element."
1527
1502
  msgstr ""
1528
1503
 
1529
- #: lino/help_texts.py:328
1504
+ #: lino/help_texts.py:323
1530
1505
  msgid "Return a list of HTML elements to be shown in overview field."
1531
1506
  msgstr ""
1532
1507
 
1533
- #: lino/help_texts.py:329
1508
+ #: lino/help_texts.py:324
1534
1509
  msgid "Merge this object into another object of same class."
1535
1510
  msgstr ""
1536
1511
 
1512
+ #: lino/help_texts.py:325
1513
+ msgid "The base class for all quantities."
1514
+ msgstr ""
1515
+
1516
+ #: lino/help_texts.py:326
1517
+ msgid ""
1518
+ "Reduce the number of decimal places so that the value fits into a field "
1519
+ "of the specified max_length, if possible. This will round the value "
1520
+ "(reducing precision) if needed."
1521
+ msgstr ""
1522
+
1523
+ #: lino/help_texts.py:327
1524
+ msgid "The class to represent a duration."
1525
+ msgstr ""
1526
+
1527
+ #: lino/help_texts.py:328
1528
+ msgid "The class to represent a percentage."
1529
+ msgstr ""
1530
+
1531
+ #: lino/help_texts.py:329
1532
+ msgid "The class to represent a fraction. (Not yet implemented)"
1533
+ msgstr ""
1534
+
1537
1535
  #: lino/help_texts.py:330
1538
1536
  msgid ""
1539
1537
  "Return the Django queryset to be used by action request ar for any data "
@@ -1739,171 +1737,191 @@ msgid "Tells at what time exactly this job started."
1739
1737
  msgstr ""
1740
1738
 
1741
1739
  #: lino/help_texts.py:374
1742
- msgid "Stores information about the job, mostly logs."
1740
+ msgid "Performs a routine job."
1743
1741
  msgstr ""
1744
1742
 
1745
1743
  #: lino/help_texts.py:375
1746
- msgid "Tells whether the task should be ignored."
1744
+ msgid "The default table for the SystemTask model."
1747
1745
  msgstr ""
1748
1746
 
1749
1747
  #: lino/help_texts.py:376
1750
- msgid "The logging level to apply when running this task."
1748
+ msgid "Model mixin used by SystemTask and other models."
1749
+ msgstr ""
1750
+
1751
+ #: lino/help_texts.py:377
1752
+ msgid "Explicitly request to tun this task as soon as possible."
1753
+ msgstr ""
1754
+
1755
+ #: lino/help_texts.py:378
1756
+ msgid "Cancel the explicit request to tun this task as soon as possible."
1757
+ msgstr ""
1758
+
1759
+ #: lino/help_texts.py:379
1760
+ msgid "The background procedure to run in this task."
1761
+ msgstr ""
1762
+
1763
+ #: lino/help_texts.py:380
1764
+ msgid "The timestamp when a user has explicitly requested to run this task."
1765
+ msgstr ""
1766
+
1767
+ #: lino/help_texts.py:381
1768
+ msgid "The timestamp when this task has started running in the task runner."
1751
1769
  msgstr ""
1752
1770
 
1753
- #: lino/help_texts.py:377
1754
- msgid "Performs a routine job."
1771
+ #: lino/help_texts.py:382
1772
+ msgid "The timestamp when this task has finished running in the task runner."
1755
1773
  msgstr ""
1756
1774
 
1757
- #: lino/help_texts.py:378
1758
- msgid "The default table for the SystemTask model."
1775
+ #: lino/help_texts.py:383
1776
+ msgid "Stores information about the job, mostly logs."
1759
1777
  msgstr ""
1760
1778
 
1761
- #: lino/help_texts.py:379
1762
- msgid "Model mixin used by SystemTask and other models."
1779
+ #: lino/help_texts.py:384
1780
+ msgid "Tells whether the task should be ignored."
1763
1781
  msgstr ""
1764
1782
 
1765
- #: lino/help_texts.py:380
1766
- msgid "The background procedure to run in this task."
1783
+ #: lino/help_texts.py:385
1784
+ msgid "The logging level to apply when running this task."
1767
1785
  msgstr ""
1768
1786
 
1769
- #: lino/help_texts.py:381
1787
+ #: lino/help_texts.py:386
1770
1788
  msgid "The Django model used to store a fiscal year."
1771
1789
  msgstr ""
1772
1790
 
1773
- #: lino/help_texts.py:382
1791
+ #: lino/help_texts.py:387
1774
1792
  msgid "The Django model used to store an accounting period."
1775
1793
  msgstr ""
1776
1794
 
1777
- #: lino/help_texts.py:383
1795
+ #: lino/help_texts.py:388
1778
1796
  msgid "The fiscal years defined in this database."
1779
1797
  msgstr ""
1780
1798
 
1781
- #: lino/help_texts.py:384
1799
+ #: lino/help_texts.py:389
1782
1800
  msgid "The accounting periods defined in this database."
1783
1801
  msgstr ""
1784
1802
 
1785
- #: lino/help_texts.py:385
1803
+ #: lino/help_texts.py:390
1786
1804
  msgid "A list of choices for the values allowed as periods.period_type."
1787
1805
  msgstr ""
1788
1806
 
1789
- #: lino/help_texts.py:386
1807
+ #: lino/help_texts.py:391
1790
1808
  msgid "Model mixin for objects that cover a range of accounting periods."
1791
1809
  msgstr ""
1792
1810
 
1793
- #: lino/help_texts.py:387
1811
+ #: lino/help_texts.py:392
1794
1812
  msgid "The first period of the range to cover."
1795
1813
  msgstr ""
1796
1814
 
1797
- #: lino/help_texts.py:388
1815
+ #: lino/help_texts.py:393
1798
1816
  msgid "The last period of the range to cover."
1799
1817
  msgstr ""
1800
1818
 
1801
- #: lino/help_texts.py:389
1819
+ #: lino/help_texts.py:394
1802
1820
  msgid ""
1803
1821
  "Model mixin for objects that can be filtered by a range of accounting "
1804
1822
  "periods. This adds two parameter fields start_period and end_period to "
1805
1823
  "every table on this model."
1806
1824
  msgstr ""
1807
1825
 
1808
- #: lino/help_texts.py:390
1826
+ #: lino/help_texts.py:395
1809
1827
  msgid "A parameter panel with two fields:"
1810
1828
  msgstr ""
1811
1829
 
1812
- #: lino/help_texts.py:391 lino/modlib/periods/mixins.py:53
1830
+ #: lino/help_texts.py:396 lino/modlib/periods/mixins.py:53
1813
1831
  msgid "Start of observed period range."
1814
1832
  msgstr ""
1815
1833
 
1816
- #: lino/help_texts.py:392 lino/modlib/periods/mixins.py:106
1834
+ #: lino/help_texts.py:397 lino/modlib/periods/mixins.py:106
1817
1835
  msgid ""
1818
1836
  "Optional end of observed period range. Leave empty to consider only the "
1819
1837
  "Start period."
1820
1838
  msgstr ""
1821
1839
 
1822
- #: lino/help_texts.py:393
1840
+ #: lino/help_texts.py:398
1823
1841
  msgid "The Django model that represents a content page."
1824
1842
  msgstr ""
1825
1843
 
1826
- #: lino/help_texts.py:394
1844
+ #: lino/help_texts.py:399
1827
1845
  msgid "This deserves better documentation."
1828
1846
  msgstr ""
1829
1847
 
1830
- #: lino/help_texts.py:395 lino/help_texts.py:398
1848
+ #: lino/help_texts.py:400 lino/help_texts.py:403
1831
1849
  msgid "Model mixin to add to models that are potentially publishable."
1832
1850
  msgstr ""
1833
1851
 
1834
- #: lino/help_texts.py:396
1852
+ #: lino/help_texts.py:401
1835
1853
  msgid ""
1836
1854
  "The name of the template to use when rendering a database row via the "
1837
1855
  "publisher interface."
1838
1856
  msgstr ""
1839
1857
 
1840
- #: lino/help_texts.py:397
1858
+ #: lino/help_texts.py:402
1841
1859
  msgid "Show this database row via the publisher interface."
1842
1860
  msgstr ""
1843
1861
 
1844
- #: lino/help_texts.py:399
1862
+ #: lino/help_texts.py:404
1845
1863
  msgid "The language of this content."
1846
1864
  msgstr ""
1847
1865
 
1848
- #: lino/help_texts.py:400
1866
+ #: lino/help_texts.py:405
1849
1867
  msgid "Default value is ‘draft’"
1850
1868
  msgstr ""
1851
1869
 
1852
- #: lino/help_texts.py:401
1870
+ #: lino/help_texts.py:406
1853
1871
  msgid "Pointer to PageFillers"
1854
1872
  msgstr ""
1855
1873
 
1856
- #: lino/help_texts.py:402
1874
+ #: lino/help_texts.py:407
1857
1875
  msgid "A choicelist with the possible states of a publisher page."
1858
1876
  msgstr ""
1859
1877
 
1860
- #: lino/help_texts.py:403
1878
+ #: lino/help_texts.py:408
1861
1879
  msgid ""
1862
1880
  "A choicelist with the page fillers that are available for this "
1863
1881
  "application."
1864
1882
  msgstr ""
1865
1883
 
1866
- #: lino/help_texts.py:404
1884
+ #: lino/help_texts.py:409
1867
1885
  msgid "A choicelist with the special pages available on this site."
1868
1886
  msgstr ""
1869
1887
 
1870
- #: lino/help_texts.py:405
1888
+ #: lino/help_texts.py:410
1871
1889
  msgid "A virtual table that searches in all database tables."
1872
1890
  msgstr ""
1873
1891
 
1874
- #: lino/help_texts.py:406
1892
+ #: lino/help_texts.py:411
1875
1893
  msgid "A virtual table used to search on this Lino site using ElasticSearch."
1876
1894
  msgstr ""
1877
1895
 
1878
- #: lino/help_texts.py:407
1896
+ #: lino/help_texts.py:412
1879
1897
  msgid "Model mixin for database objects that have summary fields."
1880
1898
  msgstr ""
1881
1899
 
1882
- #: lino/help_texts.py:408
1900
+ #: lino/help_texts.py:413
1883
1901
  msgid ""
1884
1902
  "Set this to True if all instances of this model should be considered "
1885
1903
  "temporary data to be deleted by checksummaries."
1886
1904
  msgstr ""
1887
1905
 
1888
- #: lino/help_texts.py:409
1906
+ #: lino/help_texts.py:414
1889
1907
  msgid "Update all the summary fields for this database object."
1890
1908
  msgstr ""
1891
1909
 
1892
- #: lino/help_texts.py:410
1910
+ #: lino/help_texts.py:415
1893
1911
  msgid "Set all counters and sums to 0."
1894
1912
  msgstr ""
1895
1913
 
1896
- #: lino/help_texts.py:411
1914
+ #: lino/help_texts.py:416
1897
1915
  msgid "Compute the values of the summary fields in this database row."
1898
1916
  msgstr ""
1899
1917
 
1900
- #: lino/help_texts.py:412
1918
+ #: lino/help_texts.py:417
1901
1919
  msgid ""
1902
1920
  "Runs compute_summary_values() on a a filtered queryset based on keyword "
1903
1921
  "arguments."
1904
1922
  msgstr ""
1905
1923
 
1906
- #: lino/help_texts.py:413
1924
+ #: lino/help_texts.py:418
1907
1925
  msgid ""
1908
1926
  "To be implemented by subclasses. This must yield a sequence of "
1909
1927
  "(collector, qs) tuples, where collector is a callable and qs a queryset. "
@@ -1911,564 +1929,564 @@ msgid ""
1911
1929
  " for updating that object."
1912
1930
  msgstr ""
1913
1931
 
1914
- #: lino/help_texts.py:414
1932
+ #: lino/help_texts.py:419
1915
1933
  msgid "Mixin for Summarized models that are related to a master."
1916
1934
  msgstr ""
1917
1935
 
1918
- #: lino/help_texts.py:415
1936
+ #: lino/help_texts.py:420
1919
1937
  msgid ""
1920
1938
  "The target model of the master will automatically receive an action "
1921
1939
  "check_summaries."
1922
1940
  msgstr ""
1923
1941
 
1924
- #: lino/help_texts.py:416
1942
+ #: lino/help_texts.py:421
1925
1943
  msgid ""
1926
1944
  "A Summarized that will have more than one entries per master, one for "
1927
1945
  "each month."
1928
1946
  msgstr ""
1929
1947
 
1930
- #: lino/help_texts.py:417
1948
+ #: lino/help_texts.py:422
1931
1949
  msgid "Can be 'yearly', 'monthly', 'weekly' or 'timeless'."
1932
1950
  msgstr ""
1933
1951
 
1934
- #: lino/help_texts.py:418
1952
+ #: lino/help_texts.py:423
1935
1953
  msgid "The year"
1936
1954
  msgstr ""
1937
1955
 
1938
- #: lino/help_texts.py:419
1956
+ #: lino/help_texts.py:424
1939
1957
  msgid "The number of the month or the week."
1940
1958
  msgstr ""
1941
1959
 
1942
- #: lino/help_texts.py:420
1960
+ #: lino/help_texts.py:425
1943
1961
  msgid "Web UI version of checksummaries."
1944
1962
  msgstr ""
1945
1963
 
1946
- #: lino/help_texts.py:421
1964
+ #: lino/help_texts.py:426
1947
1965
  msgid "Update summary data for this object."
1948
1966
  msgstr ""
1949
1967
 
1950
- #: lino/help_texts.py:422
1968
+ #: lino/help_texts.py:427
1951
1969
  msgid "The Django model used to represent a user account."
1952
1970
  msgstr ""
1953
1971
 
1954
- #: lino/help_texts.py:423
1972
+ #: lino/help_texts.py:428
1955
1973
  msgid ""
1956
1974
  "Must be either unique or empty. User accounts having this field empty "
1957
1975
  "cannot be used to sign in."
1958
1976
  msgstr ""
1959
1977
 
1960
- #: lino/help_texts.py:424
1978
+ #: lino/help_texts.py:429
1961
1979
  msgid ""
1962
1980
  "The user type assigned to this user. User accounts having this field "
1963
1981
  "empty cannot be used to sign in."
1964
1982
  msgstr ""
1965
1983
 
1966
- #: lino/help_texts.py:425
1984
+ #: lino/help_texts.py:430
1967
1985
  msgid ""
1968
1986
  "The partner record with additional contact information about this user "
1969
1987
  "account."
1970
1988
  msgstr ""
1971
1989
 
1972
- #: lino/help_texts.py:426
1990
+ #: lino/help_texts.py:431
1973
1991
  msgid ""
1974
1992
  "The nickname used to refer to you when speaking to other site users. Does"
1975
1993
  " not need to be unique but should be reasonably identifying."
1976
1994
  msgstr ""
1977
1995
 
1978
- #: lino/help_texts.py:427
1996
+ #: lino/help_texts.py:432
1979
1997
  msgid ""
1980
1998
  "The initials used to refer to you when speaking to business partners. "
1981
1999
  "Does not need to be unique but should be reasonably identifying."
1982
2000
  msgstr ""
1983
2001
 
1984
- #: lino/help_texts.py:428
2002
+ #: lino/help_texts.py:433
1985
2003
  msgid ""
1986
2004
  "The time zone Lino should use in time fields or when displaying "
1987
2005
  "timestamps to this user."
1988
2006
  msgstr ""
1989
2007
 
1990
- #: lino/help_texts.py:429
2008
+ #: lino/help_texts.py:434
1991
2009
  msgid "The date format to use when parsing or displaying dates."
1992
2010
  msgstr ""
1993
2011
 
1994
- #: lino/help_texts.py:430
2012
+ #: lino/help_texts.py:435
1995
2013
  msgid ""
1996
2014
  "A random string that has been sent to the user via email in order to "
1997
2015
  "verify their email address."
1998
2016
  msgstr ""
1999
2017
 
2000
- #: lino/help_texts.py:431
2018
+ #: lino/help_texts.py:436
2001
2019
  msgid ""
2002
2020
  "A not-yet-active password given by anonymous when they asked for a "
2003
2021
  "password reset. This will become the active password when the user "
2004
2022
  "verifies."
2005
2023
  msgstr ""
2006
2024
 
2007
- #: lino/help_texts.py:432
2025
+ #: lino/help_texts.py:437
2008
2026
  msgid ""
2009
2027
  "A virtual read-only field that returns the Person MTI child of the "
2010
2028
  "partner (if it exists) and otherwise None."
2011
2029
  msgstr ""
2012
2030
 
2013
- #: lino/help_texts.py:433
2031
+ #: lino/help_texts.py:438
2014
2032
  msgid ""
2015
2033
  "A virtual read-only field that returns the Company MTI child of the "
2016
2034
  "partner (if it exists) and otherwise None."
2017
2035
  msgstr ""
2018
2036
 
2019
- #: lino/help_texts.py:434
2037
+ #: lino/help_texts.py:439
2020
2038
  msgid "Not used in Lino."
2021
2039
  msgstr ""
2022
2040
 
2023
- #: lino/help_texts.py:435
2041
+ #: lino/help_texts.py:440
2024
2042
  msgid ""
2025
2043
  "If start_date is given, then the user cannot sign in before that date. If"
2026
2044
  " end_date is given, then the user cannot sign in after that date."
2027
2045
  msgstr ""
2028
2046
 
2029
- #: lino/help_texts.py:436
2047
+ #: lino/help_texts.py:441
2030
2048
  msgid "No longer used. See as is_authenticated."
2031
2049
  msgstr ""
2032
2050
 
2033
- #: lino/help_texts.py:437
2051
+ #: lino/help_texts.py:442
2034
2052
  msgid "This is always True. Compare with AnonymousUser.is_authenticated."
2035
2053
  msgstr ""
2036
2054
 
2037
- #: lino/help_texts.py:438
2055
+ #: lino/help_texts.py:443
2038
2056
  msgid "Return a queryset of users that satisfy the specified criteria."
2039
2057
  msgstr ""
2040
2058
 
2041
- #: lino/help_texts.py:439
2059
+ #: lino/help_texts.py:444
2042
2060
  msgid ""
2043
2061
  "Returns nickname if this field is not empty, otherwise get_full_name() "
2044
2062
  "unless"
2045
2063
  msgstr ""
2046
2064
 
2047
- #: lino/help_texts.py:440
2065
+ #: lino/help_texts.py:445
2048
2066
  msgid ""
2049
2067
  "Return the user’s full name, i.e. first_name followed by last_name. If "
2050
2068
  "both fields are empty, return the initials or the username."
2051
2069
  msgstr ""
2052
2070
 
2053
- #: lino/help_texts.py:441
2071
+ #: lino/help_texts.py:446
2054
2072
  msgid "Only system managers may edit other users. See also disabled_fields()."
2055
2073
  msgstr ""
2056
2074
 
2057
- #: lino/help_texts.py:442
2075
+ #: lino/help_texts.py:447
2058
2076
  msgid "Ask for a new password to be used for authentication."
2059
2077
  msgstr ""
2060
2078
 
2061
- #: lino/help_texts.py:443 lino/help_texts.py:492
2079
+ #: lino/help_texts.py:448 lino/help_texts.py:497
2062
2080
  msgid ""
2063
2081
  "Ask for the verification code you have received by email and mark your "
2064
2082
  "email address as verified."
2065
2083
  msgstr ""
2066
2084
 
2067
- #: lino/help_texts.py:444
2085
+ #: lino/help_texts.py:449
2068
2086
  msgid "Base class for all data tables on User."
2069
2087
  msgstr ""
2070
2088
 
2071
- #: lino/help_texts.py:445
2089
+ #: lino/help_texts.py:450
2072
2090
  msgid "Shows the list of all users on this site."
2073
2091
  msgstr ""
2074
2092
 
2075
- #: lino/help_texts.py:446
2093
+ #: lino/help_texts.py:451
2076
2094
  msgid ""
2077
2095
  "A variant of Users showing only active users and only some fields. This "
2078
2096
  "is used on demo sites in admin_main.html to display the list of available"
2079
2097
  " users."
2080
2098
  msgstr ""
2081
2099
 
2082
- #: lino/help_texts.py:447
2100
+ #: lino/help_texts.py:452
2083
2101
  msgid "The list of user types available in this application."
2084
2102
  msgstr ""
2085
2103
 
2086
- #: lino/help_texts.py:448
2104
+ #: lino/help_texts.py:453
2087
2105
  msgid "The user role of users having this type."
2088
2106
  msgstr ""
2089
2107
 
2090
- #: lino/help_texts.py:449
2108
+ #: lino/help_texts.py:454
2091
2109
  msgid "Default value for the hidden_languages of newly added choice items."
2092
2110
  msgstr ""
2093
2111
 
2094
- #: lino/help_texts.py:450
2112
+ #: lino/help_texts.py:455
2095
2113
  msgid "Return an instance of AnonymousUser."
2096
2114
  msgstr ""
2097
2115
 
2098
- #: lino/help_texts.py:451
2116
+ #: lino/help_texts.py:456
2099
2117
  msgid ""
2100
2118
  "An item of the UserTypes list. Every instance of this represents a user "
2101
2119
  "type."
2102
2120
  msgstr ""
2103
2121
 
2104
- #: lino/help_texts.py:452
2122
+ #: lino/help_texts.py:457
2105
2123
  msgid ""
2106
2124
  "The role of users having this type. This is an instance of UserRole or "
2107
2125
  "some subclass thereof."
2108
2126
  msgstr ""
2109
2127
 
2110
- #: lino/help_texts.py:453
2128
+ #: lino/help_texts.py:458
2111
2129
  msgid "Whether users of this type get only write-proteced access."
2112
2130
  msgstr ""
2113
2131
 
2114
- #: lino/help_texts.py:454
2132
+ #: lino/help_texts.py:459
2115
2133
  msgid ""
2116
2134
  "A subset of languages which should be hidden for users of this type. "
2117
2135
  "Default value is hidden_languages. This is used on multilingual sites "
2118
2136
  "with more than 4 or 5 languages."
2119
2137
  msgstr ""
2120
2138
 
2121
- #: lino/help_texts.py:455
2139
+ #: lino/help_texts.py:460
2122
2140
  msgid ""
2123
2141
  "Return a context manager so you can write code to be run with this as the"
2124
2142
  " current user type:"
2125
2143
  msgstr ""
2126
2144
 
2127
- #: lino/help_texts.py:456
2145
+ #: lino/help_texts.py:461
2128
2146
  msgid "A set of notification message types to be masked for users of this type."
2129
2147
  msgstr ""
2130
2148
 
2131
- #: lino/help_texts.py:457
2149
+ #: lino/help_texts.py:462
2132
2150
  msgid "Add the given notification message types to the notification mask."
2133
2151
  msgstr ""
2134
2152
 
2135
- #: lino/help_texts.py:458
2153
+ #: lino/help_texts.py:463
2136
2154
  msgid "Return True if this user type’s role satisfies the specified requirements."
2137
2155
  msgstr ""
2138
2156
 
2139
- #: lino/help_texts.py:459
2157
+ #: lino/help_texts.py:464
2140
2158
  msgid "Find the item of the main menu for the specified bound action."
2141
2159
  msgstr ""
2142
2160
 
2143
- #: lino/help_texts.py:460
2161
+ #: lino/help_texts.py:465
2144
2162
  msgid "Show a list of all user sessions."
2145
2163
  msgstr ""
2146
2164
 
2147
- #: lino/help_texts.py:461
2165
+ #: lino/help_texts.py:466
2148
2166
  msgid "Django model used to represent a authority."
2149
2167
  msgstr ""
2150
2168
 
2151
- #: lino/help_texts.py:462
2169
+ #: lino/help_texts.py:467
2152
2170
  msgid "The user who gives the right of representation. author of this authority"
2153
2171
  msgstr ""
2154
2172
 
2155
- #: lino/help_texts.py:463
2173
+ #: lino/help_texts.py:468
2156
2174
  msgid "The user who gets the right to represent the author"
2157
2175
  msgstr ""
2158
2176
 
2159
- #: lino/help_texts.py:464
2177
+ #: lino/help_texts.py:469
2160
2178
  msgid "Somebody who can help others by running AssignToMe action."
2161
2179
  msgstr ""
2162
2180
 
2163
- #: lino/help_texts.py:465
2181
+ #: lino/help_texts.py:470
2164
2182
  msgid "Somebody who can help others by running TakeAuthorship action."
2165
2183
  msgstr ""
2166
2184
 
2167
- #: lino/help_texts.py:466
2185
+ #: lino/help_texts.py:471
2168
2186
  msgid "Send a welcome mail to this user."
2169
2187
  msgstr ""
2170
2188
 
2171
- #: lino/help_texts.py:467
2189
+ #: lino/help_texts.py:472
2172
2190
  msgid "Change the password of this user."
2173
2191
  msgstr ""
2174
2192
 
2175
- #: lino/help_texts.py:468
2193
+ #: lino/help_texts.py:473
2176
2194
  msgid ""
2177
2195
  "The current password. Leave empty if the user has no password yet. A site"
2178
2196
  " manager doesn’t need to specify this at all."
2179
2197
  msgstr ""
2180
2198
 
2181
- #: lino/help_texts.py:469
2199
+ #: lino/help_texts.py:474
2182
2200
  msgid "The new password."
2183
2201
  msgstr ""
2184
2202
 
2185
- #: lino/help_texts.py:470
2203
+ #: lino/help_texts.py:475
2186
2204
  msgid "The new password a second time. Both passwords must match."
2187
2205
  msgstr ""
2188
2206
 
2189
- #: lino/help_texts.py:471
2207
+ #: lino/help_texts.py:476
2190
2208
  msgid ""
2191
2209
  "Open a window that asks for username and password and authenticates as "
2192
2210
  "this user when submitted."
2193
2211
  msgstr ""
2194
2212
 
2195
- #: lino/help_texts.py:472
2213
+ #: lino/help_texts.py:477
2196
2214
  msgid ""
2197
2215
  "Sign out the current user and return to the welcome screen for anonymous "
2198
2216
  "visitors."
2199
2217
  msgstr ""
2200
2218
 
2201
- #: lino/help_texts.py:473
2219
+ #: lino/help_texts.py:478
2202
2220
  msgid "Your first name."
2203
2221
  msgstr ""
2204
2222
 
2205
- #: lino/help_texts.py:474
2223
+ #: lino/help_texts.py:479
2206
2224
  msgid "Your last name."
2207
2225
  msgstr ""
2208
2226
 
2209
- #: lino/help_texts.py:475
2227
+ #: lino/help_texts.py:480
2210
2228
  msgid "Your email address. This is required to verify your account."
2211
2229
  msgstr ""
2212
2230
 
2213
- #: lino/help_texts.py:476
2231
+ #: lino/help_texts.py:481
2214
2232
  msgid ""
2215
2233
  "The username you want to get. Leave empty to get your email address as "
2216
2234
  "your username."
2217
2235
  msgstr ""
2218
2236
 
2219
- #: lino/help_texts.py:477
2237
+ #: lino/help_texts.py:482
2220
2238
  msgid "Your password."
2221
2239
  msgstr ""
2222
2240
 
2223
- #: lino/help_texts.py:478
2241
+ #: lino/help_texts.py:483
2224
2242
  msgid ""
2225
2243
  "The list of required roles for getting permission to edit other users’ "
2226
2244
  "work."
2227
2245
  msgstr ""
2228
2246
 
2229
- #: lino/help_texts.py:479
2247
+ #: lino/help_texts.py:484
2230
2248
  msgid ""
2231
2249
  "No longer used. The name of the field that defines the author of this "
2232
2250
  "object."
2233
2251
  msgstr ""
2234
2252
 
2235
- #: lino/help_texts.py:480
2253
+ #: lino/help_texts.py:485
2236
2254
  msgid "Inherits from Authored."
2237
2255
  msgstr ""
2238
2256
 
2239
- #: lino/help_texts.py:481
2257
+ #: lino/help_texts.py:486
2240
2258
  msgid "The author of this database object."
2241
2259
  msgstr ""
2242
2260
 
2243
- #: lino/help_texts.py:482
2261
+ #: lino/help_texts.py:487
2244
2262
  msgid "The action to start a user plan."
2245
2263
  msgstr ""
2246
2264
 
2247
- #: lino/help_texts.py:483
2265
+ #: lino/help_texts.py:488
2248
2266
  msgid "Whether to run Plan.update_plan() after starting the plan."
2249
2267
  msgstr ""
2250
2268
 
2251
- #: lino/help_texts.py:484
2269
+ #: lino/help_texts.py:489
2252
2270
  msgid ""
2253
2271
  "Mixin for anything that represents a “plan” of a given user on a given "
2254
2272
  "day."
2255
2273
  msgstr ""
2256
2274
 
2257
- #: lino/help_texts.py:485
2275
+ #: lino/help_texts.py:490
2258
2276
  msgid "The user who owns and uses this plan."
2259
2277
  msgstr ""
2260
2278
 
2261
- #: lino/help_texts.py:486
2279
+ #: lino/help_texts.py:491
2262
2280
  msgid ""
2263
2281
  "This date of this plan. This is automatically set to today each time the "
2264
2282
  "plan is called or updated."
2265
2283
  msgstr ""
2266
2284
 
2267
- #: lino/help_texts.py:487
2285
+ #: lino/help_texts.py:492
2268
2286
  msgid "Return the database object for this plan and user. or create"
2269
2287
  msgstr ""
2270
2288
 
2271
- #: lino/help_texts.py:488
2289
+ #: lino/help_texts.py:493
2272
2290
  msgid "Implementing models should provide this method."
2273
2291
  msgstr ""
2274
2292
 
2275
- #: lino/help_texts.py:489
2293
+ #: lino/help_texts.py:494
2276
2294
  msgid "Build a new list of suggestions. This will remove all current suggestions."
2277
2295
  msgstr ""
2278
2296
 
2279
- #: lino/help_texts.py:490
2297
+ #: lino/help_texts.py:495
2280
2298
  msgid "Ask for your username and password in order to authenticate."
2281
2299
  msgstr ""
2282
2300
 
2283
- #: lino/help_texts.py:491
2301
+ #: lino/help_texts.py:496
2284
2302
  msgid "Ask for your email address and send a verification code."
2285
2303
  msgstr ""
2286
2304
 
2287
- #: lino/help_texts.py:493
2305
+ #: lino/help_texts.py:498
2288
2306
  msgid "Old name of lino.core.model.TableRow.as_paragraph()"
2289
2307
  msgstr ""
2290
2308
 
2291
- #: lino/help_texts.py:494
2309
+ #: lino/help_texts.py:499
2292
2310
  msgid ""
2293
2311
  "Setting this field on a partner makes this partner available as a client "
2294
2312
  "contact."
2295
2313
  msgstr ""
2296
2314
 
2297
- #: lino/help_texts.py:495
2315
+ #: lino/help_texts.py:500
2298
2316
  msgid "The coaching type used for new coachings of this user."
2299
2317
  msgstr ""
2300
2318
 
2301
- #: lino/help_texts.py:496
2319
+ #: lino/help_texts.py:501
2302
2320
  msgid "Notify me when a coach has been assigned."
2303
2321
  msgstr ""
2304
2322
 
2305
- #: lino/help_texts.py:497
2323
+ #: lino/help_texts.py:502
2306
2324
  msgid "The database model to represent a comment."
2307
2325
  msgstr ""
2308
2326
 
2309
- #: lino/help_texts.py:498
2327
+ #: lino/help_texts.py:503
2310
2328
  msgid "The author of the comment."
2311
2329
  msgstr ""
2312
2330
 
2313
- #: lino/help_texts.py:499
2331
+ #: lino/help_texts.py:504
2314
2332
  msgid "The discussion topic this comment is about."
2315
2333
  msgstr ""
2316
2334
 
2317
- #: lino/help_texts.py:500
2335
+ #: lino/help_texts.py:505
2318
2336
  msgid "The full body text of your comment."
2319
2337
  msgstr ""
2320
2338
 
2321
- #: lino/help_texts.py:501
2339
+ #: lino/help_texts.py:506
2322
2340
  msgid "The first paragraph of your body."
2323
2341
  msgstr ""
2324
2342
 
2325
- #: lino/help_texts.py:502
2343
+ #: lino/help_texts.py:507
2326
2344
  msgid "The emotion of this comment."
2327
2345
  msgstr ""
2328
2346
 
2329
- #: lino/help_texts.py:503
2347
+ #: lino/help_texts.py:508
2330
2348
  msgid "When this comment has been published. A timestamp."
2331
2349
  msgstr ""
2332
2350
 
2333
- #: lino/help_texts.py:504
2351
+ #: lino/help_texts.py:509
2334
2352
  msgid ""
2335
2353
  "Whether to show only (un)published comments, independently of the "
2336
2354
  "publication date."
2337
2355
  msgstr ""
2338
2356
 
2339
- #: lino/help_texts.py:505
2357
+ #: lino/help_texts.py:510
2340
2358
  msgid "Hide comments before this date."
2341
2359
  msgstr ""
2342
2360
 
2343
- #: lino/help_texts.py:506
2361
+ #: lino/help_texts.py:511
2344
2362
  msgid "Hide comments after this date."
2345
2363
  msgstr ""
2346
2364
 
2347
- #: lino/help_texts.py:507
2365
+ #: lino/help_texts.py:512
2348
2366
  msgid ""
2349
2367
  "Which event (created, modified or published) to consider when applying "
2350
2368
  "the date range given by start_date and end_date."
2351
2369
  msgstr ""
2352
2370
 
2353
- #: lino/help_texts.py:508
2371
+ #: lino/help_texts.py:513
2354
2372
  msgid "Show all comments."
2355
2373
  msgstr ""
2356
2374
 
2357
- #: lino/help_texts.py:509
2375
+ #: lino/help_texts.py:514
2358
2376
  msgid "Show the comments posted by the current user."
2359
2377
  msgstr ""
2360
2378
 
2361
- #: lino/help_texts.py:510
2379
+ #: lino/help_texts.py:515
2362
2380
  msgid "Show the most recent comments that have been posted on this site."
2363
2381
  msgstr ""
2364
2382
 
2365
- #: lino/help_texts.py:511
2383
+ #: lino/help_texts.py:516
2366
2384
  msgid "Shows the comments about a given database row."
2367
2385
  msgstr ""
2368
2386
 
2369
- #: lino/help_texts.py:512
2387
+ #: lino/help_texts.py:517
2370
2388
  msgid "The choicelist with selections for Comments.observed_event."
2371
2389
  msgstr ""
2372
2390
 
2373
- #: lino/help_texts.py:513
2391
+ #: lino/help_texts.py:518
2374
2392
  msgid "The list of available values for the Comment.emotion field."
2375
2393
  msgstr ""
2376
2394
 
2377
- #: lino/help_texts.py:514
2395
+ #: lino/help_texts.py:519
2378
2396
  msgid ""
2379
2397
  "The CommentType model is not being used in production, one day we will "
2380
2398
  "probably remove it."
2381
2399
  msgstr ""
2382
2400
 
2383
- #: lino/help_texts.py:515
2401
+ #: lino/help_texts.py:520
2384
2402
  msgid "The table with all existing comment types."
2385
2403
  msgstr ""
2386
2404
 
2387
- #: lino/help_texts.py:516
2405
+ #: lino/help_texts.py:521
2388
2406
  msgid ""
2389
2407
  "Mixin for models that are commentable, i.e. the rows of which can become "
2390
2408
  "discussion topic of comments."
2391
2409
  msgstr ""
2392
2410
 
2393
- #: lino/help_texts.py:517
2411
+ #: lino/help_texts.py:522
2394
2412
  msgid ""
2395
2413
  "Add filters to the given queryset of comments, requested by the given "
2396
2414
  "user."
2397
2415
  msgstr ""
2398
2416
 
2399
- #: lino/help_texts.py:518
2417
+ #: lino/help_texts.py:523
2400
2418
  msgid ""
2401
2419
  "Return a HTML formatted string with the description of this Commentable "
2402
2420
  "as it should be displayed by the slave summary of CommentsByRFC."
2403
2421
  msgstr ""
2404
2422
 
2405
- #: lino/help_texts.py:519
2423
+ #: lino/help_texts.py:524
2406
2424
  msgid "This is automatically called when a comment has been created or modified."
2407
2425
  msgstr ""
2408
2426
 
2409
- #: lino/help_texts.py:520
2427
+ #: lino/help_texts.py:525
2410
2428
  msgid "The Django model representing a file volume."
2411
2429
  msgstr ""
2412
2430
 
2413
- #: lino/help_texts.py:521
2431
+ #: lino/help_texts.py:526
2414
2432
  msgid "The primary key used to point to this volume from a database object."
2415
2433
  msgstr ""
2416
2434
 
2417
- #: lino/help_texts.py:522
2435
+ #: lino/help_texts.py:527
2418
2436
  msgid "The full path of the root folder."
2419
2437
  msgstr ""
2420
2438
 
2421
- #: lino/help_texts.py:523
2439
+ #: lino/help_texts.py:528
2422
2440
  msgid "A descriptive text."
2423
2441
  msgstr ""
2424
2442
 
2425
- #: lino/help_texts.py:524
2443
+ #: lino/help_texts.py:529
2426
2444
  msgid "The base URL where files of this volume are being served."
2427
2445
  msgstr ""
2428
2446
 
2429
- #: lino/help_texts.py:525
2447
+ #: lino/help_texts.py:530
2430
2448
  msgid "The file backend used to access the files on this volume."
2431
2449
  msgstr ""
2432
2450
 
2433
- #: lino/help_texts.py:526
2451
+ #: lino/help_texts.py:531
2434
2452
  msgid "Internal ID to be used as primary key."
2435
2453
  msgstr ""
2436
2454
 
2437
- #: lino/help_texts.py:527
2455
+ #: lino/help_texts.py:532
2438
2456
  msgid "The volume where this file is stored."
2439
2457
  msgstr ""
2440
2458
 
2441
- #: lino/help_texts.py:528
2459
+ #: lino/help_texts.py:533
2442
2460
  msgid "The parent directory."
2443
2461
  msgstr ""
2444
2462
 
2445
- #: lino/help_texts.py:529
2463
+ #: lino/help_texts.py:534
2446
2464
  msgid ""
2447
2465
  "Whether this is a directory, i.e. a special file which contains other "
2448
2466
  "files and has no content on its own."
2449
2467
  msgstr ""
2450
2468
 
2451
- #: lino/help_texts.py:530
2469
+ #: lino/help_texts.py:535
2452
2470
  msgid "The name of this file. Must be unique among siblings of a same parent."
2453
2471
  msgstr ""
2454
2472
 
2455
- #: lino/help_texts.py:531
2473
+ #: lino/help_texts.py:536
2456
2474
  msgid "The full path name relative to the root folder of the volume."
2457
2475
  msgstr ""
2458
2476
 
2459
- #: lino/help_texts.py:532
2477
+ #: lino/help_texts.py:537
2460
2478
  msgid "Whether the file no longer exists on the file system."
2461
2479
  msgstr ""
2462
2480
 
2463
- #: lino/help_texts.py:533
2481
+ #: lino/help_texts.py:538
2464
2482
  msgid "The state of this file, used to control the workflow."
2465
2483
  msgstr ""
2466
2484
 
2467
- #: lino/help_texts.py:534
2485
+ #: lino/help_texts.py:539
2468
2486
  msgid "A choicelist with the possible states of a file."
2469
2487
  msgstr ""
2470
2488
 
2471
- #: lino/help_texts.py:535
2489
+ #: lino/help_texts.py:540
2472
2490
  msgid ""
2473
2491
  "A mixin for models that require their every object to have a scan or pdf "
2474
2492
  "file of the “receipt”, i.e. the document serving as the legal proof of "
@@ -2476,47 +2494,47 @@ msgid ""
2476
2494
  "accounting system."
2477
2495
  msgstr ""
2478
2496
 
2479
- #: lino/help_texts.py:536
2497
+ #: lino/help_texts.py:541
2480
2498
  msgid "The file which serves as receipt for this database object."
2481
2499
  msgstr ""
2482
2500
 
2483
- #: lino/help_texts.py:537
2501
+ #: lino/help_texts.py:542
2484
2502
  msgid "Return True if this database object needs a receipt."
2485
2503
  msgstr ""
2486
2504
 
2487
- #: lino/help_texts.py:538
2505
+ #: lino/help_texts.py:543
2488
2506
  msgid "Shows all receivables that need a receipt but don’t have any."
2489
2507
  msgstr ""
2490
2508
 
2491
- #: lino/help_texts.py:539
2509
+ #: lino/help_texts.py:544
2492
2510
  msgid ""
2493
2511
  "Shows all unused files (i.e. which aren’t referred to by any database "
2494
2512
  "object)."
2495
2513
  msgstr ""
2496
2514
 
2497
- #: lino/help_texts.py:540
2515
+ #: lino/help_texts.py:545
2498
2516
  msgid ""
2499
2517
  "Shows all files that are a receipt but aren’t used as such by any "
2500
2518
  "receivable."
2501
2519
  msgstr ""
2502
2520
 
2503
- #: lino/help_texts.py:541
2521
+ #: lino/help_texts.py:546
2504
2522
  msgid "Mixin for models that are “controllable” by another database object."
2505
2523
  msgstr ""
2506
2524
 
2507
- #: lino/help_texts.py:542
2525
+ #: lino/help_texts.py:547
2508
2526
  msgid ""
2509
2527
  "Update attributes of the owner field and its underlying fields owner_id "
2510
2528
  "and owner_type."
2511
2529
  msgstr ""
2512
2530
 
2513
- #: lino/help_texts.py:543
2531
+ #: lino/help_texts.py:548
2514
2532
  msgid ""
2515
2533
  "If this (acting as a controller) is itself controlled, forward the call "
2516
2534
  "to the controller."
2517
2535
  msgstr ""
2518
2536
 
2519
- #: lino/help_texts.py:544
2537
+ #: lino/help_texts.py:549
2520
2538
  msgid ""
2521
2539
  "Deprecated. This is (and always was) being ignored. Use "
2522
2540
  "update_controller_field() instead. The labels (verbose_name) of the "
@@ -2524,286 +2542,294 @@ msgid ""
2524
2542
  "which may be overridden by subclasses."
2525
2543
  msgstr ""
2526
2544
 
2527
- #: lino/help_texts.py:545
2545
+ #: lino/help_texts.py:550
2528
2546
  msgid ""
2529
2547
  "Lino installs this as the default data table for "
2530
2548
  "django.contrib.ContentType."
2531
2549
  msgstr ""
2532
2550
 
2533
- #: lino/help_texts.py:546
2551
+ #: lino/help_texts.py:551
2534
2552
  msgid ""
2535
2553
  "Display a clickable list of all MTI parents, i.e. non-abstract base "
2536
2554
  "models."
2537
2555
  msgstr ""
2538
2556
 
2539
- #: lino/help_texts.py:547
2557
+ #: lino/help_texts.py:552
2540
2558
  msgid "Django model to represent a customized help text."
2541
2559
  msgstr ""
2542
2560
 
2543
- #: lino/help_texts.py:548
2561
+ #: lino/help_texts.py:553
2544
2562
  msgid "Shows all database objects that have a broken GeneriForeignKey field."
2545
2563
  msgstr ""
2546
2564
 
2547
- #: lino/help_texts.py:549
2565
+ #: lino/help_texts.py:554
2548
2566
  msgid "Add verbose_name and help_text to Django’s GFK."
2549
2567
  msgstr ""
2550
2568
 
2551
- #: lino/help_texts.py:550
2569
+ #: lino/help_texts.py:555
2552
2570
  msgid ""
2553
2571
  "Use this instead of models.PositiveIntegerField for fields that are part "
2554
2572
  "of a GFK and you want Lino to render them using a Combobox."
2555
2573
  msgstr ""
2556
2574
 
2557
- #: lino/help_texts.py:551
2575
+ #: lino/help_texts.py:556
2558
2576
  msgid "Inherits from lino.modlib.printing.DjangoBuildMethod."
2559
2577
  msgstr ""
2560
2578
 
2561
- #: lino/help_texts.py:552
2579
+ #: lino/help_texts.py:557
2562
2580
  msgid "Usage example in /topics/xml"
2563
2581
  msgstr ""
2564
2582
 
2565
- #: lino/help_texts.py:553
2583
+ #: lino/help_texts.py:558
2566
2584
  msgid ""
2567
2585
  "The name of the XML file to generate. This file will be overwritten "
2568
2586
  "without asking. The name formatted with one name self in the context."
2569
2587
  msgstr ""
2570
2588
 
2571
- #: lino/help_texts.py:554
2589
+ #: lino/help_texts.py:559
2572
2590
  msgid "The name of a Jinja template to render for generating the XML content."
2573
2591
  msgstr ""
2574
2592
 
2575
- #: lino/help_texts.py:555
2593
+ #: lino/help_texts.py:560
2576
2594
  msgid "The name of a “validator” to use for validating the XML content."
2577
2595
  msgstr ""
2578
2596
 
2579
- #: lino/help_texts.py:556
2597
+ #: lino/help_texts.py:561
2598
+ msgid "Get the name of the XML file to be generated for this database row."
2599
+ msgstr ""
2600
+
2601
+ #: lino/help_texts.py:562
2602
+ msgid "Make the XML file for this database row."
2603
+ msgstr ""
2604
+
2605
+ #: lino/help_texts.py:563
2580
2606
  msgid "Adds three rich text fields (lino.core.fields.RichTextField):"
2581
2607
  msgstr ""
2582
2608
 
2583
- #: lino/help_texts.py:557
2609
+ #: lino/help_texts.py:564
2584
2610
  msgid "An editable text body."
2585
2611
  msgstr ""
2586
2612
 
2587
- #: lino/help_texts.py:558
2613
+ #: lino/help_texts.py:565
2588
2614
  msgid "A read-only preview of the first paragraph of body."
2589
2615
  msgstr ""
2590
2616
 
2591
- #: lino/help_texts.py:559
2617
+ #: lino/help_texts.py:566
2592
2618
  msgid "A read-only full preview of body."
2593
2619
  msgstr ""
2594
2620
 
2595
- #: lino/help_texts.py:560
2621
+ #: lino/help_texts.py:567
2596
2622
  msgid "A Previewable where the body field is a babel field."
2597
2623
  msgstr ""
2598
2624
 
2599
- #: lino/help_texts.py:561
2625
+ #: lino/help_texts.py:568
2600
2626
  msgid "Check for previewables needing update."
2601
2627
  msgstr ""
2602
2628
 
2603
- #: lino/help_texts.py:562
2629
+ #: lino/help_texts.py:569
2604
2630
  msgid ""
2605
2631
  "Django model to represent a mention, i.e. the fact that some memo text of"
2606
2632
  " the owner points to some other database row."
2607
2633
  msgstr ""
2608
2634
 
2609
- #: lino/help_texts.py:563
2635
+ #: lino/help_texts.py:570
2610
2636
  msgid "The database row that mentions another one in a memo text."
2611
2637
  msgstr ""
2612
2638
 
2613
- #: lino/help_texts.py:564
2639
+ #: lino/help_texts.py:571
2614
2640
  msgid "The mentioned database row."
2615
2641
  msgstr ""
2616
2642
 
2617
- #: lino/help_texts.py:565
2643
+ #: lino/help_texts.py:572
2618
2644
  msgid "Makes your model referable by a memo command."
2619
2645
  msgstr ""
2620
2646
 
2621
- #: lino/help_texts.py:566
2647
+ #: lino/help_texts.py:573
2622
2648
  msgid "The name of the memo command to define."
2623
2649
  msgstr ""
2624
2650
 
2625
- #: lino/help_texts.py:567
2651
+ #: lino/help_texts.py:574
2626
2652
  msgid "The Django model that represents a notification message."
2627
2653
  msgstr ""
2628
2654
 
2629
- #: lino/help_texts.py:568
2655
+ #: lino/help_texts.py:575
2630
2656
  msgid ""
2631
2657
  "The subject of this message. See Subject and body of a notification "
2632
2658
  "message."
2633
2659
  msgstr ""
2634
2660
 
2635
- #: lino/help_texts.py:569
2661
+ #: lino/help_texts.py:576
2636
2662
  msgid "The body of this message. See Subject and body of a notification message."
2637
2663
  msgstr ""
2638
2664
 
2639
- #: lino/help_texts.py:570
2665
+ #: lino/help_texts.py:577
2640
2666
  msgid ""
2641
2667
  "The recipient of this message. The site user to whom this message is to "
2642
2668
  "be delivered."
2643
2669
  msgstr ""
2644
2670
 
2645
- #: lino/help_texts.py:571
2671
+ #: lino/help_texts.py:578
2646
2672
  msgid "The owner of this message. Expresses what this message is about."
2647
2673
  msgstr ""
2648
2674
 
2649
- #: lino/help_texts.py:572
2675
+ #: lino/help_texts.py:579
2650
2676
  msgid "The notification message type."
2651
2677
  msgstr ""
2652
2678
 
2653
- #: lino/help_texts.py:573
2679
+ #: lino/help_texts.py:580
2654
2680
  msgid "The comment to which a reply to this message would reply."
2655
2681
  msgstr ""
2656
2682
 
2657
- #: lino/help_texts.py:574
2683
+ #: lino/help_texts.py:581
2658
2684
  msgid "Timestamp of when this message has been emitted."
2659
2685
  msgstr ""
2660
2686
 
2661
- #: lino/help_texts.py:575
2687
+ #: lino/help_texts.py:582
2662
2688
  msgid "Timestamp of when this message has been sent via email to its recipient."
2663
2689
  msgstr ""
2664
2690
 
2665
- #: lino/help_texts.py:576
2691
+ #: lino/help_texts.py:583
2666
2692
  msgid "Timestamp of when the recipient of this message has marked it as seen."
2667
2693
  msgstr ""
2668
2694
 
2669
- #: lino/help_texts.py:577
2695
+ #: lino/help_texts.py:584
2670
2696
  msgid ""
2671
2697
  "Emit a notification message to each of the given recipients, respecting "
2672
2698
  "their individual user settings."
2673
2699
  msgstr ""
2674
2700
 
2675
- #: lino/help_texts.py:578
2701
+ #: lino/help_texts.py:585
2676
2702
  msgid ""
2677
2703
  "Create a message unless that user has already been notified about that "
2678
2704
  "object."
2679
2705
  msgstr ""
2680
2706
 
2681
- #: lino/help_texts.py:579
2707
+ #: lino/help_texts.py:586
2682
2708
  msgid ""
2683
2709
  "Send summary emails for all pending notifications with the given "
2684
2710
  "mail_mode mm."
2685
2711
  msgstr ""
2686
2712
 
2687
- #: lino/help_texts.py:580
2713
+ #: lino/help_texts.py:587
2688
2714
  msgid "Send_message to all connected users"
2689
2715
  msgstr ""
2690
2716
 
2691
- #: lino/help_texts.py:581
2717
+ #: lino/help_texts.py:588
2692
2718
  msgid "Send_message to the user’s browser"
2693
2719
  msgstr ""
2694
2720
 
2695
- #: lino/help_texts.py:582
2721
+ #: lino/help_texts.py:589
2696
2722
  msgid "Base for all tables of messages."
2697
2723
  msgstr ""
2698
2724
 
2699
- #: lino/help_texts.py:583
2725
+ #: lino/help_texts.py:590
2700
2726
  msgid "The gobal list of all messages."
2701
2727
  msgstr ""
2702
2728
 
2703
- #: lino/help_texts.py:584
2729
+ #: lino/help_texts.py:591
2704
2730
  msgid "Shows messages emitted to me."
2705
2731
  msgstr ""
2706
2732
 
2707
- #: lino/help_texts.py:585
2733
+ #: lino/help_texts.py:592
2708
2734
  msgid "The Django model that represents a push subscription."
2709
2735
  msgstr ""
2710
2736
 
2711
- #: lino/help_texts.py:586
2737
+ #: lino/help_texts.py:593
2712
2738
  msgid ""
2713
2739
  "Model mixin for things that emit notifications to a list of observers (or"
2714
2740
  " “watchers”) when an instance is modified."
2715
2741
  msgstr ""
2716
2742
 
2717
- #: lino/help_texts.py:587
2743
+ #: lino/help_texts.py:594
2718
2744
  msgid "Parameters:"
2719
2745
  msgstr ""
2720
2746
 
2721
- #: lino/help_texts.py:588
2747
+ #: lino/help_texts.py:595
2722
2748
  msgid "Returns the subject text of the notification message to emit."
2723
2749
  msgstr ""
2724
2750
 
2725
- #: lino/help_texts.py:589
2751
+ #: lino/help_texts.py:596
2726
2752
  msgid "Return the body text of the notification message to emit."
2727
2753
  msgstr ""
2728
2754
 
2729
- #: lino/help_texts.py:590
2755
+ #: lino/help_texts.py:597
2730
2756
  msgid "Return a list of HTML elements to be inserted into the body."
2731
2757
  msgstr ""
2732
2758
 
2733
- #: lino/help_texts.py:591
2759
+ #: lino/help_texts.py:598
2734
2760
  msgid "Return the owner of the notification to emit."
2735
2761
  msgstr ""
2736
2762
 
2737
- #: lino/help_texts.py:592
2763
+ #: lino/help_texts.py:599
2738
2764
  msgid "Mixin for notifying actions."
2739
2765
  msgstr ""
2740
2766
 
2741
- #: lino/help_texts.py:593
2767
+ #: lino/help_texts.py:600
2742
2768
  msgid "Return the default value of the notify_subject field."
2743
2769
  msgstr ""
2744
2770
 
2745
- #: lino/help_texts.py:594
2771
+ #: lino/help_texts.py:601
2746
2772
  msgid "Return the default value of the notify_body field."
2747
2773
  msgstr ""
2748
2774
 
2749
- #: lino/help_texts.py:595
2775
+ #: lino/help_texts.py:602
2750
2776
  msgid ""
2751
2777
  "Expected to return the owner lino.modlib.notify.Message.owner> of the "
2752
2778
  "message."
2753
2779
  msgstr ""
2754
2780
 
2755
- #: lino/help_texts.py:596
2781
+ #: lino/help_texts.py:603
2756
2782
  msgid "Yield a list of users to be notified."
2757
2783
  msgstr ""
2758
2784
 
2759
- #: lino/help_texts.py:597
2785
+ #: lino/help_texts.py:604
2760
2786
  msgid "The list of possible choices for the message_type field of a Message."
2761
2787
  msgstr ""
2762
2788
 
2763
- #: lino/help_texts.py:598
2789
+ #: lino/help_texts.py:605
2764
2790
  msgid "How the system should send email notifications to a user."
2765
2791
  msgstr ""
2766
2792
 
2767
- #: lino/help_texts.py:599
2793
+ #: lino/help_texts.py:606
2768
2794
  msgid "Disable notifications for this user."
2769
2795
  msgstr ""
2770
2796
 
2771
- #: lino/help_texts.py:600
2797
+ #: lino/help_texts.py:607
2772
2798
  msgid "Notify in Lino but never send email."
2773
2799
  msgstr ""
2774
2800
 
2775
- #: lino/help_texts.py:601
2801
+ #: lino/help_texts.py:608
2776
2802
  msgid "Mark this message as seen."
2777
2803
  msgstr ""
2778
2804
 
2779
- #: lino/help_texts.py:602
2805
+ #: lino/help_texts.py:609
2780
2806
  msgid "Mark all messages as seen."
2781
2807
  msgstr ""
2782
2808
 
2783
- #: lino/help_texts.py:603
2809
+ #: lino/help_texts.py:610
2784
2810
  msgid "Mark this message as not yet seen."
2785
2811
  msgstr ""
2786
2812
 
2787
- #: lino/help_texts.py:604
2813
+ #: lino/help_texts.py:611
2788
2814
  msgid "The printable object instance"
2789
2815
  msgstr ""
2790
2816
 
2791
- #: lino/help_texts.py:605
2817
+ #: lino/help_texts.py:612
2792
2818
  msgid "shortcut for settings.SITE"
2793
2819
  msgstr ""
2794
2820
 
2795
- #: lino/help_texts.py:606
2821
+ #: lino/help_texts.py:613
2796
2822
  msgid "Mixin for models for which Lino can generate a printable document."
2797
2823
  msgstr ""
2798
2824
 
2799
- #: lino/help_texts.py:607
2825
+ #: lino/help_texts.py:614
2800
2826
  msgid ""
2801
2827
  "Return a Django language code to be activated when an instance of this is"
2802
2828
  " being printed. The default implementation returns the Site’s default "
2803
2829
  "language."
2804
2830
  msgstr ""
2805
2831
 
2806
- #: lino/help_texts.py:608
2832
+ #: lino/help_texts.py:615
2807
2833
  msgid ""
2808
2834
  "Return a list of file names of templates for the specified build method. "
2809
2835
  "Returning an empty list means that this item is not printable. For "
@@ -2811,55 +2837,55 @@ msgid ""
2811
2837
  "than 1 element."
2812
2838
  msgstr ""
2813
2839
 
2814
- #: lino/help_texts.py:609
2840
+ #: lino/help_texts.py:616
2815
2841
  msgid ""
2816
2842
  "Adds a series of names to the context used when rendering printable "
2817
2843
  "documents."
2818
2844
  msgstr ""
2819
2845
 
2820
- #: lino/help_texts.py:610
2846
+ #: lino/help_texts.py:617
2821
2847
  msgid ""
2822
2848
  "Return the name of the body template to use when rendering this object in"
2823
2849
  " a printable excerpt (lino_xl.lib.excerpts). An empty string means that "
2824
2850
  "Lino should use the default value defined on the ExcerptType."
2825
2851
  msgstr ""
2826
2852
 
2827
- #: lino/help_texts.py:611
2853
+ #: lino/help_texts.py:618
2828
2854
  msgid ""
2829
2855
  "Return an iterable of database rows for which Lino should generate a "
2830
2856
  "printable excerpt."
2831
2857
  msgstr ""
2832
2858
 
2833
- #: lino/help_texts.py:612
2859
+ #: lino/help_texts.py:619
2834
2860
  msgid "Return the build method to use when printing this object."
2835
2861
  msgstr ""
2836
2862
 
2837
- #: lino/help_texts.py:613
2863
+ #: lino/help_texts.py:620
2838
2864
  msgid ""
2839
2865
  "Set additional fields of newly created excerpts from this. Called from "
2840
2866
  "lino_xl.lib.excerpts.models.ExcerptType.get_or_create_excerpt."
2841
2867
  msgstr ""
2842
2868
 
2843
- #: lino/help_texts.py:614
2869
+ #: lino/help_texts.py:621
2844
2870
  msgid ""
2845
2871
  "This is called by print actions before the printable is being generated. "
2846
2872
  "Application code may e.g. raise a Warning exception in order to refuse "
2847
2873
  "the print action. The warning message can be a translatable string."
2848
2874
  msgstr ""
2849
2875
 
2850
- #: lino/help_texts.py:615
2876
+ #: lino/help_texts.py:622
2851
2877
  msgid ""
2852
2878
  "Mixin for Models that generate a unique external file at a determined "
2853
2879
  "place when being printed."
2854
2880
  msgstr ""
2855
2881
 
2856
- #: lino/help_texts.py:616
2882
+ #: lino/help_texts.py:623
2857
2883
  msgid ""
2858
2884
  "Timestamp of the built target file. Contains None if no build hasn’t been"
2859
2885
  " called yet."
2860
2886
  msgstr ""
2861
2887
 
2862
- #: lino/help_texts.py:617
2888
+ #: lino/help_texts.py:624
2863
2889
  msgid ""
2864
2890
  "The action used to print this object. This is an instance of "
2865
2891
  "DirectPrintAction or CachedPrintAction by default. And if "
@@ -2867,63 +2893,63 @@ msgid ""
2867
2893
  "replaces do_print by a lino_xl.lib.excerpts.CreateExcerpt instance."
2868
2894
  msgstr ""
2869
2895
 
2870
- #: lino/help_texts.py:618
2896
+ #: lino/help_texts.py:625
2871
2897
  msgid ""
2872
2898
  "A CachedPrintable that uses a “Type” for deciding which template to use "
2873
2899
  "on a given instance."
2874
2900
  msgstr ""
2875
2901
 
2876
- #: lino/help_texts.py:619
2902
+ #: lino/help_texts.py:626
2877
2903
  msgid "Base class for models that specify the TypedPrintable.type."
2878
2904
  msgstr ""
2879
2905
 
2880
- #: lino/help_texts.py:620
2906
+ #: lino/help_texts.py:627
2881
2907
  msgid "Default value for templates_group is the model’s full name."
2882
2908
  msgstr ""
2883
2909
 
2884
- #: lino/help_texts.py:621
2910
+ #: lino/help_texts.py:628
2885
2911
  msgid "A pointer to an item of BuildMethods."
2886
2912
  msgstr ""
2887
2913
 
2888
- #: lino/help_texts.py:622
2914
+ #: lino/help_texts.py:629
2889
2915
  msgid "The name of the file to be used as template."
2890
2916
  msgstr ""
2891
2917
 
2892
- #: lino/help_texts.py:623
2918
+ #: lino/help_texts.py:630
2893
2919
  msgid ""
2894
2920
  "Checks for missing cache files on all objects which inherit "
2895
2921
  "CachedPrintable."
2896
2922
  msgstr ""
2897
2923
 
2898
- #: lino/help_texts.py:624
2924
+ #: lino/help_texts.py:631
2899
2925
  msgid "Base class for all “Print” actions."
2900
2926
  msgstr ""
2901
2927
 
2902
- #: lino/help_texts.py:625
2928
+ #: lino/help_texts.py:632
2903
2929
  msgid "Print using a hard-coded template and without cache."
2904
2930
  msgstr ""
2905
2931
 
2906
- #: lino/help_texts.py:626
2932
+ #: lino/help_texts.py:633
2907
2933
  msgid ""
2908
2934
  "A print action which uses a cache for the generated printable document "
2909
2935
  "and builds is only when it doesn’t yet exist."
2910
2936
  msgstr ""
2911
2937
 
2912
- #: lino/help_texts.py:627
2938
+ #: lino/help_texts.py:634
2913
2939
  msgid "Defines the Clear cache button on a Printable record."
2914
2940
  msgstr ""
2915
2941
 
2916
- #: lino/help_texts.py:628
2942
+ #: lino/help_texts.py:635
2917
2943
  msgid ""
2918
2944
  "Edit the print template, i.e. the file specified by "
2919
2945
  "Printable.get_print_templates()."
2920
2946
  msgstr ""
2921
2947
 
2922
- #: lino/help_texts.py:629
2948
+ #: lino/help_texts.py:636
2923
2949
  msgid "The choicelist of build methods offered on this site."
2924
2950
  msgstr ""
2925
2951
 
2926
- #: lino/help_texts.py:630
2952
+ #: lino/help_texts.py:637
2927
2953
  msgid ""
2928
2954
  "Base class for all build methods. A build method encapsulates the process"
2929
2955
  " of generating a “printable document” that inserts data from the database"
@@ -2931,187 +2957,187 @@ msgid ""
2931
2957
  "post-processor."
2932
2958
  msgstr ""
2933
2959
 
2934
- #: lino/help_texts.py:631
2960
+ #: lino/help_texts.py:638
2935
2961
  msgid ""
2936
2962
  "Whether this build method results is an editable file. For example, .odt "
2937
2963
  "files are considered editable while .pdf files aren’t."
2938
2964
  msgstr ""
2939
2965
 
2940
- #: lino/help_texts.py:632
2966
+ #: lino/help_texts.py:639
2941
2967
  msgid "A BuildMethod which uses a template."
2942
2968
  msgstr ""
2943
2969
 
2944
- #: lino/help_texts.py:633
2970
+ #: lino/help_texts.py:640
2945
2971
  msgid "A TemplatedBuildMethod which uses Django’s templating engine."
2946
2972
  msgstr ""
2947
2973
 
2948
- #: lino/help_texts.py:634
2974
+ #: lino/help_texts.py:641
2949
2975
  msgid "Generates .xml files from .xml templates."
2950
2976
  msgstr ""
2951
2977
 
2952
- #: lino/help_texts.py:635
2978
+ #: lino/help_texts.py:642
2953
2979
  msgid ""
2954
2980
  "Base for build methods which use Lino’s templating system "
2955
2981
  "(find_config_file)."
2956
2982
  msgstr ""
2957
2983
 
2958
- #: lino/help_texts.py:636
2984
+ #: lino/help_texts.py:643
2959
2985
  msgid "For example CourseToXls."
2960
2986
  msgstr ""
2961
2987
 
2962
- #: lino/help_texts.py:637
2988
+ #: lino/help_texts.py:644
2963
2989
  msgid "Concrete subclasses must implement this."
2964
2990
  msgstr ""
2965
2991
 
2966
- #: lino/help_texts.py:638
2992
+ #: lino/help_texts.py:645
2967
2993
  msgid "Not actively used. Generates .pdf files from .tex templates."
2968
2994
  msgstr ""
2969
2995
 
2970
- #: lino/help_texts.py:639
2996
+ #: lino/help_texts.py:646
2971
2997
  msgid "Not actively used. Generates .rtf files from .rtf templates."
2972
2998
  msgstr ""
2973
2999
 
2974
- #: lino/help_texts.py:640
3000
+ #: lino/help_texts.py:647
2975
3001
  msgid ""
2976
3002
  "Deprecated. Generates .pdf files from .html templates. Requires pisa. "
2977
3003
  "Usage example see lino_book.projects.pisa."
2978
3004
  msgstr ""
2979
3005
 
2980
- #: lino/help_texts.py:641
3006
+ #: lino/help_texts.py:648
2981
3007
  msgid "This is your main page."
2982
3008
  msgstr ""
2983
3009
 
2984
- #: lino/help_texts.py:642
3010
+ #: lino/help_texts.py:649
2985
3011
  msgid "A singleton database object used to store persistent site parameters."
2986
3012
  msgstr ""
2987
3013
 
2988
- #: lino/help_texts.py:643
3014
+ #: lino/help_texts.py:650
2989
3015
  msgid "The default build method to use when rendering printable documents."
2990
3016
  msgstr ""
2991
3017
 
2992
- #: lino/help_texts.py:644
3018
+ #: lino/help_texts.py:651
2993
3019
  msgid "A constant user-defined date to be substituted as current system date."
2994
3020
  msgstr ""
2995
3021
 
2996
- #: lino/help_texts.py:645
3022
+ #: lino/help_texts.py:652
2997
3023
  msgid "The site operator, i.e. the legal person that operates this Lino site."
2998
3024
  msgstr ""
2999
3025
 
3000
- #: lino/help_texts.py:646
3026
+ #: lino/help_texts.py:653
3001
3027
  msgid ""
3002
3028
  "If this is not empty, any calendar events before that date are being "
3003
3029
  "hidden in certain places."
3004
3030
  msgstr ""
3005
3031
 
3006
- #: lino/help_texts.py:647
3032
+ #: lino/help_texts.py:654
3007
3033
  msgid ""
3008
- "Always return the cached instance which holds the one and only database "
3034
+ "Returns the cached instance, which holds the one and only database "
3009
3035
  "instance."
3010
3036
  msgstr ""
3011
3037
 
3012
- #: lino/help_texts.py:648
3038
+ #: lino/help_texts.py:655
3013
3039
  msgid "Mixin to add row-level edit locking to any model."
3014
3040
  msgstr ""
3015
3041
 
3016
- #: lino/help_texts.py:649
3042
+ #: lino/help_texts.py:656
3017
3043
  msgid "Rebuild the site cache. This action is available on About."
3018
3044
  msgstr ""
3019
3045
 
3020
- #: lino/help_texts.py:650
3046
+ #: lino/help_texts.py:657
3021
3047
  msgid "The table used to present the SiteConfig row in a Detail form."
3022
3048
  msgstr ""
3023
3049
 
3024
- #: lino/help_texts.py:651
3050
+ #: lino/help_texts.py:658
3025
3051
  msgid ""
3026
3052
  "Mixin for database models that express a set of repeating (“recurrent”) "
3027
3053
  "events. Example usage can be found in specs.cal.automatic_events."
3028
3054
  msgstr ""
3029
3055
 
3030
- #: lino/help_texts.py:652
3056
+ #: lino/help_texts.py:659
3031
3057
  msgid "The start date of the first meeting to be generated."
3032
3058
  msgstr ""
3033
3059
 
3034
- #: lino/help_texts.py:653
3060
+ #: lino/help_texts.py:660
3035
3061
  msgid ""
3036
3062
  "The end date of the first meeting to be generated. Leave this field empty"
3037
3063
  " if the meetings last less than one day."
3038
3064
  msgstr ""
3039
3065
 
3040
- #: lino/help_texts.py:654
3066
+ #: lino/help_texts.py:661
3041
3067
  msgid "The frequency of periodic iteration: daily, weekly, monthly or yearly."
3042
3068
  msgstr ""
3043
3069
 
3044
- #: lino/help_texts.py:655
3070
+ #: lino/help_texts.py:662
3045
3071
  msgid "The interval between each periodic iteration."
3046
3072
  msgstr ""
3047
3073
 
3048
- #: lino/help_texts.py:656
3074
+ #: lino/help_texts.py:663
3049
3075
  msgid ""
3050
3076
  "Space-separated list of one or several positions within the recurrency "
3051
3077
  "cycle."
3052
3078
  msgstr ""
3053
3079
 
3054
- #: lino/help_texts.py:657
3080
+ #: lino/help_texts.py:664
3055
3081
  msgid "Maximum number of calendar entries to generate."
3056
3082
  msgstr ""
3057
3083
 
3058
- #: lino/help_texts.py:658
3084
+ #: lino/help_texts.py:665
3059
3085
  msgid ""
3060
3086
  "A virtual field returning the textual formulation of the weekdays where "
3061
3087
  "the recurrence occurs."
3062
3088
  msgstr ""
3063
3089
 
3064
- #: lino/help_texts.py:659
3090
+ #: lino/help_texts.py:666
3065
3091
  msgid "List of possible choices for a ‘recurrency’ field."
3066
3092
  msgstr ""
3067
3093
 
3068
- #: lino/help_texts.py:660
3094
+ #: lino/help_texts.py:667
3069
3095
  msgid ""
3070
3096
  "Repeat events yearly, moving them together with the Easter data of that "
3071
3097
  "year."
3072
3098
  msgstr ""
3073
3099
 
3074
- #: lino/help_texts.py:661
3100
+ #: lino/help_texts.py:668
3075
3101
  msgid "A choicelist with the seven days of a week."
3076
3102
  msgstr ""
3077
3103
 
3078
- #: lino/help_texts.py:662
3104
+ #: lino/help_texts.py:669
3079
3105
  msgid "The list of possible duration units defined by this application."
3080
3106
  msgstr ""
3081
3107
 
3082
- #: lino/help_texts.py:663
3108
+ #: lino/help_texts.py:670
3083
3109
  msgid "Base class for the choices in the DurationUnits choicelist."
3084
3110
  msgstr ""
3085
3111
 
3086
- #: lino/help_texts.py:664
3112
+ #: lino/help_texts.py:671
3087
3113
  msgid ""
3088
3114
  "Return a date or datetime obtained by adding value times this unit to the"
3089
3115
  " specified value orig. Returns None is orig is empty."
3090
3116
  msgstr ""
3091
3117
 
3092
- #: lino/help_texts.py:665
3118
+ #: lino/help_texts.py:672
3093
3119
  msgid "A list of colors to be specified for displaying."
3094
3120
  msgstr ""
3095
3121
 
3096
- #: lino/help_texts.py:666
3122
+ #: lino/help_texts.py:673
3097
3123
  msgid "A data checker used to find unbleached html content."
3098
3124
  msgstr ""
3099
3125
 
3100
- #: lino/help_texts.py:667
3126
+ #: lino/help_texts.py:674
3101
3127
  msgid ""
3102
3128
  "Defines the possible choices for the gender of a person (“male”, “female”"
3103
3129
  " and “nonbinary”)."
3104
3130
  msgstr ""
3105
3131
 
3106
- #: lino/help_texts.py:668
3132
+ #: lino/help_texts.py:675
3107
3133
  msgid "A choicelist with two values “Yes” and “No”."
3108
3134
  msgstr ""
3109
3135
 
3110
- #: lino/help_texts.py:669
3136
+ #: lino/help_texts.py:676
3111
3137
  msgid "Base class for choices of “observed event”-style choicelists."
3112
3138
  msgstr ""
3113
3139
 
3114
- #: lino/help_texts.py:670
3140
+ #: lino/help_texts.py:677
3115
3141
  msgid ""
3116
3142
  "Add a filter to the given Django queryset. The given obj must be either a"
3117
3143
  " datetime.date object or must have two attributes start_date and "
@@ -3119,192 +3145,192 @@ msgid ""
3119
3145
  "DateRangeValue."
3120
3146
  msgstr ""
3121
3147
 
3122
- #: lino/help_texts.py:671
3148
+ #: lino/help_texts.py:678
3123
3149
  msgid "The list of things you can observe on a lino.mixins.periods.DateRange."
3124
3150
  msgstr ""
3125
3151
 
3126
- #: lino/help_texts.py:672
3152
+ #: lino/help_texts.py:679
3127
3153
  msgid ""
3128
3154
  "Used by lino.modlib.users.User.time_zone and "
3129
3155
  "lino_xl.lib.working.Session.time_zone."
3130
3156
  msgstr ""
3131
3157
 
3132
- #: lino/help_texts.py:673
3158
+ #: lino/help_texts.py:680
3133
3159
  msgid "Used by lino.modlib.users.User.date_format."
3134
3160
  msgstr ""
3135
3161
 
3136
- #: lino/help_texts.py:674
3162
+ #: lino/help_texts.py:681
3137
3163
  msgid ""
3138
3164
  "A reusable block of text that can be selected from a text editor to be "
3139
3165
  "inserted into the text being edited."
3140
3166
  msgstr ""
3141
3167
 
3142
- #: lino/help_texts.py:675
3168
+ #: lino/help_texts.py:682
3143
3169
  msgid "Django model representing an upload file."
3144
3170
  msgstr ""
3145
3171
 
3146
- #: lino/help_texts.py:676
3172
+ #: lino/help_texts.py:683
3147
3173
  msgid "Pointer to the uploaded file itself (a Django FileField)."
3148
3174
  msgstr ""
3149
3175
 
3150
- #: lino/help_texts.py:677
3176
+ #: lino/help_texts.py:684
3151
3177
  msgid "The size of the file in bytes. Not yet implemented."
3152
3178
  msgstr ""
3153
3179
 
3154
- #: lino/help_texts.py:678
3180
+ #: lino/help_texts.py:685
3155
3181
  msgid "The media type of the uploaded file."
3156
3182
  msgstr ""
3157
3183
 
3158
- #: lino/help_texts.py:679
3184
+ #: lino/help_texts.py:686
3159
3185
  msgid "The type of this upload."
3160
3186
  msgstr ""
3161
3187
 
3162
- #: lino/help_texts.py:680
3188
+ #: lino/help_texts.py:687
3163
3189
  msgid "A short description entered manually by the user."
3164
3190
  msgstr ""
3165
3191
 
3166
- #: lino/help_texts.py:681
3192
+ #: lino/help_texts.py:688
3167
3193
  msgid "A pointer to the library volume where this file is stored."
3168
3194
  msgstr ""
3169
3195
 
3170
- #: lino/help_texts.py:682
3196
+ #: lino/help_texts.py:689
3171
3197
  msgid "The upload area this file belongs to."
3172
3198
  msgstr ""
3173
3199
 
3174
- #: lino/help_texts.py:683
3200
+ #: lino/help_texts.py:690
3175
3201
  msgid "The path of this file, relative the volume’s root."
3176
3202
  msgstr ""
3177
3203
 
3178
- #: lino/help_texts.py:684
3204
+ #: lino/help_texts.py:691
3179
3205
  msgid ""
3180
3206
  "Almost the same as description, but if file is not empty, the text is "
3181
3207
  "clickable, and clicking on it opens the uploaded file in a new browser "
3182
3208
  "window."
3183
3209
  msgstr ""
3184
3210
 
3185
- #: lino/help_texts.py:685
3211
+ #: lino/help_texts.py:692
3186
3212
  msgid "Base class for all data tables of upload files."
3187
3213
  msgstr ""
3188
3214
 
3189
- #: lino/help_texts.py:686
3215
+ #: lino/help_texts.py:693
3190
3216
  msgid "Shows all upload files on this Lino site."
3191
3217
  msgstr ""
3192
3218
 
3193
- #: lino/help_texts.py:687
3219
+ #: lino/help_texts.py:694
3194
3220
  msgid "Mixin for tables of upload files where the upload area is known."
3195
3221
  msgstr ""
3196
3222
 
3197
- #: lino/help_texts.py:688
3223
+ #: lino/help_texts.py:695
3198
3224
  msgid "Shows my uploads (i.e. those whose author is the requesting user)."
3199
3225
  msgstr ""
3200
3226
 
3201
- #: lino/help_texts.py:689
3227
+ #: lino/help_texts.py:696
3202
3228
  msgid ""
3203
3229
  "Abstract base class of Upload encapsulating some really basic "
3204
3230
  "functionality."
3205
3231
  msgstr ""
3206
3232
 
3207
- #: lino/help_texts.py:690
3233
+ #: lino/help_texts.py:697
3208
3234
  msgid "Django model representing an upload type."
3209
3235
  msgstr ""
3210
3236
 
3211
- #: lino/help_texts.py:691
3237
+ #: lino/help_texts.py:698
3212
3238
  msgid ""
3213
3239
  "Optional pointer to a virtual upload shortcut field. If this is not "
3214
3240
  "empty, then the given shortcut field will manage uploads of this type. "
3215
3241
  "See also Shortcuts."
3216
3242
  msgstr ""
3217
3243
 
3218
- #: lino/help_texts.py:692
3244
+ #: lino/help_texts.py:699
3219
3245
  msgid "The table with all existing upload types."
3220
3246
  msgstr ""
3221
3247
 
3222
- #: lino/help_texts.py:693
3248
+ #: lino/help_texts.py:700
3223
3249
  msgid ""
3224
3250
  "Model mixin for database objects that can have upload files associated to"
3225
3251
  " them."
3226
3252
  msgstr ""
3227
3253
 
3228
- #: lino/help_texts.py:694
3254
+ #: lino/help_texts.py:701
3229
3255
  msgid ""
3230
3256
  "Opens a data window with the uploaded files associated to this database "
3231
3257
  "object."
3232
3258
  msgstr ""
3233
3259
 
3234
- #: lino/help_texts.py:695
3260
+ #: lino/help_texts.py:702
3235
3261
  msgid "Shows the uploaded files associated to this database object."
3236
3262
  msgstr ""
3237
3263
 
3238
- #: lino/help_texts.py:696
3264
+ #: lino/help_texts.py:703
3239
3265
  msgid "The list of available upload shortcut fields in this application."
3240
3266
  msgstr ""
3241
3267
 
3242
- #: lino/help_texts.py:697
3268
+ #: lino/help_texts.py:704
3243
3269
  msgid "Find orphaned files in uploads folder."
3244
3270
  msgstr ""
3245
3271
 
3246
- #: lino/help_texts.py:698
3272
+ #: lino/help_texts.py:705
3247
3273
  msgid "The base class for both build methods."
3248
3274
  msgstr ""
3249
3275
 
3250
- #: lino/help_texts.py:699
3276
+ #: lino/help_texts.py:706
3251
3277
  msgid ""
3252
3278
  "Renders the input template and returns the unmodified output as plain "
3253
3279
  "HTML."
3254
3280
  msgstr ""
3255
3281
 
3256
- #: lino/help_texts.py:700
3282
+ #: lino/help_texts.py:707
3257
3283
  msgid ""
3258
3284
  "Like WeasyBuildMethod, but the rendered HTML is then passed through "
3259
3285
  "weasyprint which converts from HTML to PDF."
3260
3286
  msgstr ""
3261
3287
 
3262
- #: lino/help_texts.py:701
3288
+ #: lino/help_texts.py:708
3263
3289
  msgid ""
3264
3290
  "Lino extension of Django’s database model. This is a subclass of Django’s"
3265
3291
  " Model class (django.db.models.Model)."
3266
3292
  msgstr ""
3267
3293
 
3268
- #: lino/help_texts.py:702
3294
+ #: lino/help_texts.py:709
3269
3295
  msgid "A multi-paragraph representation of this database row."
3270
3296
  msgstr ""
3271
3297
 
3272
- #: lino/help_texts.py:703
3298
+ #: lino/help_texts.py:710
3273
3299
  msgid ""
3274
3300
  "A virtual field that displays the navigation panel for this row. This may"
3275
3301
  " be included in a detail layout, usually either on the left or the right "
3276
3302
  "side with full height."
3277
3303
  msgstr ""
3278
3304
 
3279
- #: lino/help_texts.py:704
3305
+ #: lino/help_texts.py:711
3280
3306
  msgid ""
3281
3307
  "Shows the current workflow state of this database row and a list of "
3282
3308
  "available workflow actions."
3283
3309
  msgstr ""
3284
3310
 
3285
- #: lino/help_texts.py:705
3311
+ #: lino/help_texts.py:712
3286
3312
  msgid ""
3287
3313
  "Optional default value for the workflow_state_field of all data tables "
3288
3314
  "based on this model."
3289
3315
  msgstr ""
3290
3316
 
3291
- #: lino/help_texts.py:706
3317
+ #: lino/help_texts.py:713
3292
3318
  msgid ""
3293
3319
  "Optional default value for workflow_owner_field on all data tables based "
3294
3320
  "on this model."
3295
3321
  msgstr ""
3296
3322
 
3297
- #: lino/help_texts.py:707
3323
+ #: lino/help_texts.py:714
3298
3324
  msgid ""
3299
3325
  "Called when field FOO of an instance of this model has been modified "
3300
3326
  "through the user interface."
3301
3327
  msgstr ""
3302
3328
 
3303
- #: lino/help_texts.py:708
3329
+ #: lino/help_texts.py:715
3304
3330
  msgid "Return a queryset or list of allowed choices for field FOO."
3305
3331
  msgstr ""
3306
3332
 
3307
- #: lino/help_texts.py:709
3333
+ #: lino/help_texts.py:716
3308
3334
  msgid ""
3309
3335
  "For every field named “FOO” for which a chooser exists, if the model also"
3310
3336
  " has a method called “create_FOO_choice”, then this chooser will be a "
@@ -3312,14 +3338,14 @@ msgid ""
3312
3338
  "Lino will create a new database object from it."
3313
3339
  msgstr ""
3314
3340
 
3315
- #: lino/help_texts.py:710
3341
+ #: lino/help_texts.py:717
3316
3342
  msgid ""
3317
3343
  "Return the text to be displayed when an instance of this model is being "
3318
3344
  "used as a choice in a combobox of a ForeignKey field pointing to this "
3319
3345
  "model. request is the web request, actor is the requesting actor."
3320
3346
  msgstr ""
3321
3347
 
3322
- #: lino/help_texts.py:711
3348
+ #: lino/help_texts.py:718
3323
3349
  msgid ""
3324
3350
  "Decide whether this database object may be deleted. Return None when "
3325
3351
  "there is no veto against deleting this database row, otherwise a "
@@ -3327,6 +3353,12 @@ msgid ""
3327
3353
  " row."
3328
3354
  msgstr ""
3329
3355
 
3356
+ #: lino/help_texts.py:719
3357
+ msgid ""
3358
+ "Shortcut to call lino.core.inject.update_field() for usage during "
3359
+ "lino.core.site.Site.do_site_startup() in a settings.py or similar place."
3360
+ msgstr ""
3361
+
3330
3362
  #: lino/config/admin_main_base.html:8
3331
3363
  msgid "This server is running in READONLY mode."
3332
3364
  msgstr ""
@@ -3416,7 +3448,7 @@ msgid "This demo site has %d users:"
3416
3448
  msgstr ""
3417
3449
 
3418
3450
  #: lino/config/admin_main_base.html:93
3419
- msgid "The password is the same for all of them: \"1234\"."
3451
+ msgid "The password is the same for all of them:"
3420
3452
  msgstr ""
3421
3453
 
3422
3454
  #: lino/config/unused/403.html:3 lino/config/unused/403.html:7
@@ -3466,105 +3498,105 @@ msgstr ""
3466
3498
  msgid "If you can reproduce this message, please tell us how you did that."
3467
3499
  msgstr ""
3468
3500
 
3469
- #: lino/core/actions.py:816
3501
+ #: lino/core/actions.py:810
3470
3502
  msgid "Open a detail window on this record."
3471
3503
  msgstr ""
3472
3504
 
3473
- #: lino/core/actions.py:818
3505
+ #: lino/core/actions.py:812
3474
3506
  msgid "Detail"
3475
3507
  msgstr ""
3476
3508
 
3477
- #: lino/core/actions.py:834
3509
+ #: lino/core/actions.py:828
3478
3510
  msgid "Open a detail window on records of ."
3479
3511
  msgstr ""
3480
3512
 
3481
- #: lino/core/actions.py:892 lino/core/renderer.py:455
3513
+ #: lino/core/actions.py:886 lino/core/renderer.py:458
3482
3514
  msgid "New"
3483
3515
  msgstr ""
3484
3516
 
3485
- #: lino/core/actions.py:921
3517
+ #: lino/core/actions.py:915
3486
3518
  #, python-brace-format
3487
3519
  msgid "Insert a new {}."
3488
3520
  msgstr ""
3489
3521
 
3490
- #: lino/core/actions.py:928
3522
+ #: lino/core/actions.py:922
3491
3523
  #, python-format
3492
3524
  msgid "Insert into %s"
3493
3525
  msgstr ""
3494
3526
 
3495
- #: lino/core/actions.py:929
3527
+ #: lino/core/actions.py:923
3496
3528
  #, python-brace-format
3497
3529
  msgid "Insert a new {}"
3498
3530
  msgstr ""
3499
3531
 
3500
- #: lino/core/actions.py:1038
3532
+ #: lino/core/actions.py:1034
3501
3533
  msgid "Save changes in this form"
3502
3534
  msgstr ""
3503
3535
 
3504
- #: lino/core/actions.py:1039
3536
+ #: lino/core/actions.py:1035
3505
3537
  msgid "Save"
3506
3538
  msgstr ""
3507
3539
 
3508
- #: lino/core/actions.py:1082 lino/core/requests.py:1710
3540
+ #: lino/core/actions.py:1078 lino/core/requests.py:1710
3509
3541
  #, python-format
3510
3542
  msgid "%s has been created."
3511
3543
  msgstr ""
3512
3544
 
3513
- #: lino/core/actions.py:1110
3545
+ #: lino/core/actions.py:1106
3514
3546
  #, python-format
3515
3547
  msgid "%s files have been uploaded: %s"
3516
3548
  msgstr ""
3517
3549
 
3518
- #: lino/core/actions.py:1135 lino/modlib/changes/models.py:35
3550
+ #: lino/core/actions.py:1131 lino/modlib/changes/models.py:35
3519
3551
  msgid "Create"
3520
3552
  msgstr ""
3521
3553
 
3522
- #: lino/core/actions.py:1137
3554
+ #: lino/core/actions.py:1133
3523
3555
  msgid "Create the record and open a detail window on it"
3524
3556
  msgstr ""
3525
3557
 
3526
- #: lino/core/actions.py:1188
3558
+ #: lino/core/actions.py:1184
3527
3559
  msgid "Go"
3528
3560
  msgstr ""
3529
3561
 
3530
- #: lino/core/actions.py:1336
3562
+ #: lino/core/actions.py:1333
3531
3563
  #, python-format
3532
3564
  msgid "%d row(s) have been updated."
3533
3565
  msgstr ""
3534
3566
 
3535
- #: lino/core/actions.py:1358
3567
+ #: lino/core/actions.py:1355
3536
3568
  msgid "Delete this record"
3537
3569
  msgstr ""
3538
3570
 
3539
- #: lino/core/actions.py:1363 lino/modlib/changes/models.py:37
3571
+ #: lino/core/actions.py:1360 lino/modlib/changes/models.py:37
3540
3572
  msgid "Delete"
3541
3573
  msgstr ""
3542
3574
 
3543
- #: lino/core/actions.py:1420
3575
+ #: lino/core/actions.py:1417
3544
3576
  #, python-format
3545
3577
  msgid ""
3546
3578
  "You are about to delete %(num)d %(type)s\n"
3547
3579
  "(%(targets)s)"
3548
3580
  msgstr ""
3549
3581
 
3550
- #: lino/core/actions.py:1430
3582
+ #: lino/core/actions.py:1427
3551
3583
  #, python-brace-format
3552
3584
  msgid "as well as all related volatile records ({})"
3553
3585
  msgstr ""
3554
3586
 
3555
- #: lino/core/actions.py:1435 lino/core/workflows.py:298
3556
- #: lino/mixins/duplicable.py:113 lino/modlib/printing/actions.py:198
3587
+ #: lino/core/actions.py:1432 lino/core/workflows.py:298
3588
+ #: lino/mixins/duplicable.py:125 lino/modlib/printing/actions.py:198
3557
3589
  #: lino/modlib/printing/actions.py:294 lino/modlib/printing/actions.py:344
3558
3590
  #: lino/modlib/users/mixins.py:327 lino/modlib/users/mixins.py:391
3559
3591
  msgid "Are you sure?"
3560
3592
  msgstr ""
3561
3593
 
3562
- #: lino/core/actors.py:348
3594
+ #: lino/core/actors.py:346
3563
3595
  #, python-format
3564
3596
  msgid "%(details)s of %(master)s"
3565
3597
  msgstr ""
3566
3598
 
3567
- #: lino/core/actors.py:1403 lino/core/tables.py:719 lino/mixins/ref.py:173
3599
+ #: lino/core/actors.py:1405 lino/core/tables.py:727 lino/mixins/ref.py:182
3568
3600
  #: lino/modlib/help/management/commands/makehelp.py:393
3569
3601
  #: lino/modlib/importfilters/models.py:100 lino/modlib/notify/actions.py:14
3570
3602
  #: lino/modlib/search/models.py:85 lino/modlib/system/mixins.py:287
@@ -3574,7 +3606,7 @@ msgstr ""
3574
3606
  msgid "Description"
3575
3607
  msgstr ""
3576
3608
 
3577
- #: lino/core/actors.py:1438
3609
+ #: lino/core/actors.py:1440
3578
3610
  #, python-format
3579
3611
  msgid "Total (%d rows)"
3580
3612
  msgstr ""
@@ -3584,37 +3616,37 @@ msgstr ""
3584
3616
  msgid "Confirmation"
3585
3617
  msgstr ""
3586
3618
 
3587
- #: lino/core/choicelists.py:33
3619
+ #: lino/core/choicelists.py:27
3588
3620
  msgid "value"
3589
3621
  msgstr ""
3590
3622
 
3591
- #: lino/core/choicelists.py:338
3623
+ #: lino/core/choicelists.py:333
3592
3624
  #, python-brace-format
3593
3625
  msgid "No {} pointing to {}"
3594
3626
  msgstr ""
3595
3627
 
3596
- #: lino/core/choicelists.py:478
3628
+ #: lino/core/choicelists.py:473
3597
3629
  msgid "Button text"
3598
3630
  msgstr ""
3599
3631
 
3600
- #: lino/core/choicelists.py:508
3632
+ #: lino/core/choicelists.py:503
3601
3633
  msgid "text"
3602
3634
  msgstr ""
3603
3635
 
3604
- #: lino/core/choicelists.py:512
3636
+ #: lino/core/choicelists.py:507
3605
3637
  msgid "name"
3606
3638
  msgstr ""
3607
3639
 
3608
- #: lino/core/choicelists.py:516 lino/modlib/help/models.py:86
3609
- #: lino/modlib/periods/models.py:99
3640
+ #: lino/core/choicelists.py:511 lino/modlib/help/models.py:87
3641
+ #: lino/modlib/periods/models.py:113
3610
3642
  msgid "Remark"
3611
3643
  msgstr ""
3612
3644
 
3613
- #: lino/core/choicelists.py:520
3645
+ #: lino/core/choicelists.py:515
3614
3646
  msgid "Type"
3615
3647
  msgstr ""
3616
3648
 
3617
- #: lino/core/choicelists.py:863
3649
+ #: lino/core/choicelists.py:860
3618
3650
  #, python-format
3619
3651
  msgid "%(value)r (invalid choice for %(list)s)"
3620
3652
  msgstr ""
@@ -3639,60 +3671,60 @@ msgstr ""
3639
3671
  msgid "lines changed"
3640
3672
  msgstr ""
3641
3673
 
3642
- #: lino/core/elems.py:1157
3674
+ #: lino/core/elems.py:1154
3643
3675
  #, python-format
3644
3676
  msgid "Select a %s..."
3645
3677
  msgstr ""
3646
3678
 
3647
- #: lino/core/elems.py:1630
3679
+ #: lino/core/elems.py:1627
3648
3680
  msgid "show"
3649
3681
  msgstr ""
3650
3682
 
3651
- #: lino/core/elems.py:2879 lino/core/renderer.py:422
3683
+ #: lino/core/elems.py:2884 lino/core/renderer.py:425
3652
3684
  msgid "Show this table in own window"
3653
3685
  msgstr ""
3654
3686
 
3655
- #: lino/core/fields.py:54
3687
+ #: lino/core/fields.py:56
3656
3688
  msgid "Invalid date"
3657
3689
  msgstr ""
3658
3690
 
3659
- #: lino/core/fields.py:189
3691
+ #: lino/core/fields.py:199
3660
3692
  msgid "Price"
3661
3693
  msgstr ""
3662
3694
 
3663
- #: lino/core/fields.py:193
3695
+ #: lino/core/fields.py:203
3664
3696
  #, python-brace-format
3665
3697
  msgid "{} from"
3666
3698
  msgstr ""
3667
3699
 
3668
- #: lino/core/fields.py:196
3700
+ #: lino/core/fields.py:206
3669
3701
  msgid "to"
3670
3702
  msgstr ""
3671
3703
 
3672
- #: lino/core/fields.py:208
3704
+ #: lino/core/fields.py:218
3673
3705
  msgid "Invalid price range"
3674
3706
  msgstr ""
3675
3707
 
3676
- #: lino/core/fields.py:216
3708
+ #: lino/core/fields.py:226
3677
3709
  #, python-brace-format
3678
3710
  msgid "{} {}...{}"
3679
3711
  msgstr ""
3680
3712
 
3681
- #: lino/core/fields.py:218
3713
+ #: lino/core/fields.py:228
3682
3714
  #, python-brace-format
3683
3715
  msgid "{} from {}"
3684
3716
  msgstr ""
3685
3717
 
3686
- #: lino/core/fields.py:220
3718
+ #: lino/core/fields.py:230
3687
3719
  #, python-brace-format
3688
3720
  msgid "{} until {}"
3689
3721
  msgstr ""
3690
3722
 
3691
- #: lino/core/fields.py:945
3723
+ #: lino/core/fields.py:963
3692
3724
  msgid "Quantity (Decimal or Duration)"
3693
3725
  msgstr ""
3694
3726
 
3695
- #: lino/core/fields.py:1056
3727
+ #: lino/core/fields.py:1078
3696
3728
  msgid ""
3697
3729
  "Uncomplete dates are allowed, e.g.\n"
3698
3730
  "\"00.00.1980\" means \"some day in 1980\",\n"
@@ -3700,20 +3732,20 @@ msgid ""
3700
3732
  "or \"23.07.0000\" means \"on a 23th of July\"."
3701
3733
  msgstr ""
3702
3734
 
3703
- #: lino/core/kernel.py:617
3735
+ #: lino/core/kernel.py:651
3704
3736
  msgid "You have "
3705
3737
  msgstr ""
3706
3738
 
3707
- #: lino/core/kernel.py:618
3739
+ #: lino/core/kernel.py:652
3708
3740
  #, python-brace-format
3709
3741
  msgid "{0} items in {1}"
3710
3742
  msgstr ""
3711
3743
 
3712
- #: lino/core/kernel.py:800
3744
+ #: lino/core/kernel.py:834
3713
3745
  msgid "User abandoned"
3714
3746
  msgstr ""
3715
3747
 
3716
- #: lino/core/kernel.py:822
3748
+ #: lino/core/kernel.py:856
3717
3749
  msgid "Server is in readonly mode"
3718
3750
  msgstr ""
3719
3751
 
@@ -3774,54 +3806,54 @@ msgstr ""
3774
3806
  msgid "Merged %(this)s into %(merge_to)s. Updated %(updated)d related rows."
3775
3807
  msgstr ""
3776
3808
 
3777
- #: lino/core/model.py:213
3809
+ #: lino/core/model.py:214
3778
3810
  #, python-format
3779
3811
  msgid "Cannot delete %(model)s %(self)s because %(count)d %(refs)s refer to it."
3780
3812
  msgstr ""
3781
3813
 
3782
- #: lino/core/model.py:317
3814
+ #: lino/core/model.py:318
3783
3815
  #, python-brace-format
3784
3816
  msgid "Cannot create {obj} from '{text}'"
3785
3817
  msgstr ""
3786
3818
 
3787
- #: lino/core/model.py:478 lino/core/requests.py:1713
3819
+ #: lino/core/model.py:484 lino/core/requests.py:1713
3788
3820
  #, python-format
3789
3821
  msgid "%s has been updated."
3790
3822
  msgstr ""
3791
3823
 
3792
- #: lino/core/model.py:480 lino/core/requests.py:1715
3824
+ #: lino/core/model.py:486 lino/core/requests.py:1715
3793
3825
  #, python-format
3794
3826
  msgid "%s : nothing to save."
3795
3827
  msgstr ""
3796
3828
 
3797
- #: lino/core/model.py:613 lino/modlib/help/management/commands/makehelp.py:393
3798
- #: lino/modlib/importfilters/models.py:27 lino/modlib/linod/mixins.py:74
3829
+ #: lino/core/model.py:619 lino/modlib/help/management/commands/makehelp.py:393
3830
+ #: lino/modlib/importfilters/models.py:27 lino/modlib/linod/mixins.py:102
3799
3831
  #: lino/modlib/users/ui.py:255
3800
3832
  msgid "Name"
3801
3833
  msgstr ""
3802
3834
 
3803
- #: lino/core/model.py:653
3835
+ #: lino/core/model.py:659
3804
3836
  msgid "Workflow"
3805
3837
  msgstr ""
3806
3838
 
3807
- #: lino/core/model.py:794
3839
+ #: lino/core/model.py:793
3808
3840
  #, python-brace-format
3809
3841
  msgid "Pick {}"
3810
3842
  msgstr ""
3811
3843
 
3812
- #: lino/core/renderer.py:471
3844
+ #: lino/core/renderer.py:474
3813
3845
  msgid "Show Last"
3814
3846
  msgstr ""
3815
3847
 
3816
- #: lino/core/renderer.py:473
3848
+ #: lino/core/renderer.py:476
3817
3849
  msgid "Show the last record in a detail window"
3818
3850
  msgstr ""
3819
3851
 
3820
- #: lino/core/renderer.py:484
3852
+ #: lino/core/renderer.py:487
3821
3853
  msgid "Show All"
3822
3854
  msgstr ""
3823
3855
 
3824
- #: lino/core/renderer.py:486
3856
+ #: lino/core/renderer.py:489
3825
3857
  msgid "Show all records in a table window"
3826
3858
  msgstr ""
3827
3859
 
@@ -3829,12 +3861,12 @@ msgstr ""
3829
3861
  msgid "Aborted"
3830
3862
  msgstr ""
3831
3863
 
3832
- #: lino/core/requests.py:278 lino/core/requests.py:1125 lino/core/store.py:712
3864
+ #: lino/core/requests.py:278 lino/core/requests.py:1125 lino/core/store.py:715
3833
3865
  #: lino/modlib/system/choicelists.py:29
3834
3866
  msgid "Yes"
3835
3867
  msgstr ""
3836
3868
 
3837
- #: lino/core/requests.py:279 lino/core/requests.py:1126 lino/core/store.py:712
3869
+ #: lino/core/requests.py:279 lino/core/requests.py:1126 lino/core/store.py:715
3838
3870
  #: lino/modlib/system/choicelists.py:30
3839
3871
  msgid "No"
3840
3872
  msgstr ""
@@ -3855,39 +3887,39 @@ msgstr ""
3855
3887
  msgid "the documentation"
3856
3888
  msgstr ""
3857
3889
 
3858
- #: lino/core/site.py:177 lino/modlib/changes/models.py:79
3890
+ #: lino/core/site.py:178 lino/modlib/changes/models.py:79
3859
3891
  msgid "Master"
3860
3892
  msgstr ""
3861
3893
 
3862
- #: lino/core/site.py:179
3894
+ #: lino/core/site.py:180
3863
3895
  msgid "Reports"
3864
3896
  msgstr ""
3865
3897
 
3866
- #: lino/core/site.py:180
3898
+ #: lino/core/site.py:181
3867
3899
  msgid "Configure"
3868
3900
  msgstr ""
3869
3901
 
3870
- #: lino/core/site.py:181
3902
+ #: lino/core/site.py:182
3871
3903
  msgid "Explorer"
3872
3904
  msgstr ""
3873
3905
 
3874
- #: lino/core/site.py:182
3906
+ #: lino/core/site.py:183
3875
3907
  msgid "Site"
3876
3908
  msgstr ""
3877
3909
 
3878
- #: lino/core/site.py:1634 lino/modlib/languages/fixtures/few_languages.py:26
3910
+ #: lino/core/site.py:1632 lino/modlib/languages/fixtures/few_languages.py:26
3879
3911
  msgid "English"
3880
3912
  msgstr ""
3881
3913
 
3882
- #: lino/core/site.py:2205
3914
+ #: lino/core/site.py:2219
3883
3915
  msgid "This website runs "
3884
3916
  msgstr ""
3885
3917
 
3886
- #: lino/core/site.py:2213
3918
+ #: lino/core/site.py:2227
3887
3919
  msgid " using "
3888
3920
  msgstr ""
3889
3921
 
3890
- #: lino/core/site.py:2231
3922
+ #: lino/core/site.py:2245
3891
3923
  #, python-format
3892
3924
  msgid "%(place)s, %(date)s"
3893
3925
  msgstr ""
@@ -3897,20 +3929,20 @@ msgstr ""
3897
3929
  msgid "Existing primary key value %r may not be modified."
3898
3930
  msgstr ""
3899
3931
 
3900
- #: lino/core/store.py:302
3932
+ #: lino/core/store.py:306
3901
3933
  #, python-format
3902
3934
  msgid "%r (invalid choice)"
3903
3935
  msgstr ""
3904
3936
 
3905
- #: lino/core/store.py:321 lino/core/views.py:166
3937
+ #: lino/core/store.py:325 lino/core/views.py:166
3906
3938
  msgid "Blank"
3907
3939
  msgstr ""
3908
3940
 
3909
- #: lino/core/store.py:323 lino/core/views.py:174
3941
+ #: lino/core/store.py:327 lino/core/views.py:174
3910
3942
  msgid "Not Blank"
3911
3943
  msgstr ""
3912
3944
 
3913
- #: lino/core/tables.py:746
3945
+ #: lino/core/tables.py:754
3914
3946
  msgid "Button"
3915
3947
  msgstr ""
3916
3948
 
@@ -3919,7 +3951,7 @@ msgid "Anonymous"
3919
3951
  msgstr ""
3920
3952
 
3921
3953
  #: lino/core/user_types.py:26 lino/modlib/dashboard/models.py:86
3922
- #: lino/modlib/users/models.py:80
3954
+ #: lino/modlib/users/models.py:78
3923
3955
  msgid "User"
3924
3956
  msgstr ""
3925
3957
 
@@ -3927,12 +3959,12 @@ msgstr ""
3927
3959
  msgid "Administrator"
3928
3960
  msgstr ""
3929
3961
 
3930
- #: lino/core/utils.py:622
3962
+ #: lino/core/utils.py:625
3931
3963
  #, python-format
3932
3964
  msgid "Row %(rowid)d of %(rowcount)d"
3933
3965
  msgstr ""
3934
3966
 
3935
- #: lino/core/utils.py:626
3967
+ #: lino/core/utils.py:629
3936
3968
  msgid "No navigation"
3937
3969
  msgstr ""
3938
3970
 
@@ -3954,69 +3986,69 @@ msgstr ""
3954
3986
  msgid "Too many authentication failures from {}"
3955
3987
  msgstr ""
3956
3988
 
3957
- #: lino/mixins/__init__.py:48 lino/modlib/users/actions.py:138
3958
- #: lino/modlib/users/actions.py:367
3989
+ #: lino/mixins/__init__.py:67 lino/modlib/users/actions.py:136
3990
+ #: lino/modlib/users/actions.py:365
3959
3991
  msgid "e-mail address"
3960
3992
  msgstr ""
3961
3993
 
3962
- #: lino/mixins/__init__.py:65
3994
+ #: lino/mixins/__init__.py:84
3963
3995
  msgid "URL"
3964
3996
  msgstr ""
3965
3997
 
3966
- #: lino/mixins/__init__.py:66
3998
+ #: lino/mixins/__init__.py:85
3967
3999
  msgid "Phone"
3968
4000
  msgstr ""
3969
4001
 
3970
- #: lino/mixins/__init__.py:67
4002
+ #: lino/mixins/__init__.py:86
3971
4003
  msgid "Mobile"
3972
4004
  msgstr ""
3973
4005
 
3974
- #: lino/mixins/__init__.py:68
4006
+ #: lino/mixins/__init__.py:87
3975
4007
  msgid "Fax"
3976
4008
  msgstr ""
3977
4009
 
3978
- #: lino/mixins/__init__.py:92 lino/modlib/comments/choicelists.py:66
4010
+ #: lino/mixins/__init__.py:111 lino/modlib/comments/choicelists.py:66
3979
4011
  msgid "Modified"
3980
4012
  msgstr ""
3981
4013
 
3982
- #: lino/mixins/__init__.py:119 lino/mixins/__init__.py:121
4014
+ #: lino/mixins/__init__.py:138 lino/mixins/__init__.py:140
3983
4015
  #: lino/modlib/comments/choicelists.py:65
3984
4016
  msgid "Created"
3985
4017
  msgstr ""
3986
4018
 
3987
- #: lino/mixins/dupable.py:60 lino/modlib/dupable/mixins.py:34
4019
+ #: lino/mixins/dupable.py:61 lino/modlib/dupable/mixins.py:35
3988
4020
  #, python-format
3989
4021
  msgid "There are %d similar %s:"
3990
4022
  msgstr ""
3991
4023
 
3992
- #: lino/mixins/dupable.py:69 lino/modlib/dupable/mixins.py:43
4024
+ #: lino/mixins/dupable.py:70 lino/modlib/dupable/mixins.py:44
3993
4025
  #, python-format
3994
4026
  msgid "Are you sure you want to create a new %(model)s named %(name)s?"
3995
4027
  msgstr ""
3996
4028
 
3997
- #: lino/mixins/dupable.py:207 lino/modlib/dupable/mixins.py:112
4029
+ #: lino/mixins/dupable.py:208 lino/modlib/dupable/mixins.py:113
3998
4030
  msgid "Must update phonetic words."
3999
4031
  msgstr ""
4000
4032
 
4001
- #: lino/mixins/dupable.py:255 lino/modlib/dupable/mixins.py:167
4033
+ #: lino/mixins/dupable.py:253 lino/modlib/dupable/mixins.py:165
4002
4034
  msgid "Check for missing phonetic words"
4003
4035
  msgstr ""
4004
4036
 
4005
- #: lino/mixins/dupable.py:283 lino/modlib/dupable/models.py:127
4037
+ #: lino/mixins/dupable.py:281 lino/modlib/dupable/models.py:127
4006
4038
  msgid "Similar record"
4007
4039
  msgstr ""
4008
4040
 
4009
- #: lino/mixins/dupable.py:297
4041
+ #: lino/mixins/dupable.py:295
4010
4042
  #, python-brace-format
4011
4043
  msgid "Phonetic words: {0}"
4012
4044
  msgstr ""
4013
4045
 
4014
- #: lino/mixins/duplicable.py:100
4046
+ #: lino/mixins/duplicable.py:112
4015
4047
  #, python-format
4016
4048
  msgid "Duplicated %(old)s to %(new)s."
4017
4049
  msgstr ""
4018
4050
 
4019
- #: lino/mixins/duplicable.py:112
4051
+ #: lino/mixins/duplicable.py:124
4020
4052
  #, python-brace-format
4021
4053
  msgid "This will create a copy of {}."
4022
4054
  msgstr ""
@@ -4045,8 +4077,8 @@ msgctxt "(of a human)"
4045
4077
  msgid "Title"
4046
4078
  msgstr ""
4047
4079
 
4048
- #: lino/mixins/human.py:200 lino/modlib/users/actions.py:69
4049
- #: lino/modlib/users/models.py:104
4080
+ #: lino/mixins/human.py:200 lino/modlib/users/actions.py:68
4081
+ #: lino/modlib/users/models.py:102
4050
4082
  msgid "First name"
4051
4083
  msgstr ""
4052
4084
 
@@ -4054,8 +4086,8 @@ msgstr ""
4054
4086
  msgid "Middle name"
4055
4087
  msgstr ""
4056
4088
 
4057
- #: lino/mixins/human.py:204 lino/modlib/users/actions.py:70
4058
- #: lino/modlib/users/models.py:105
4089
+ #: lino/mixins/human.py:204 lino/modlib/users/actions.py:69
4090
+ #: lino/modlib/users/models.py:103
4059
4091
  msgid "Last name"
4060
4092
  msgstr ""
4061
4093
 
@@ -4219,7 +4251,7 @@ msgstr ""
4219
4251
  msgid "See as "
4220
4252
  msgstr ""
4221
4253
 
4222
- #: lino/mixins/ref.py:44 lino/modlib/publisher/models.py:56
4254
+ #: lino/mixins/ref.py:45 lino/modlib/publisher/models.py:62
4223
4255
  msgid "Reference"
4224
4256
  msgstr ""
4225
4257
 
@@ -4252,20 +4284,20 @@ msgstr ""
4252
4284
  msgid "Row # %s"
4253
4285
  msgstr ""
4254
4286
 
4255
- #: lino/mixins/sequenced.py:329
4287
+ #: lino/mixins/sequenced.py:325
4256
4288
  #, python-brace-format
4257
4289
  msgid "Renumbered {} of {} siblings."
4258
4290
  msgstr ""
4259
4291
 
4260
- #: lino/mixins/sequenced.py:332
4292
+ #: lino/mixins/sequenced.py:336
4261
4293
  msgid "Move"
4262
4294
  msgstr ""
4263
4295
 
4264
- #: lino/mixins/sequenced.py:366
4296
+ #: lino/mixins/sequenced.py:370
4265
4297
  msgid "Parent"
4266
4298
  msgstr ""
4267
4299
 
4268
- #: lino/mixins/sequenced.py:369 lino/modlib/publisher/ui.py:155
4300
+ #: lino/mixins/sequenced.py:373 lino/modlib/publisher/ui.py:155
4269
4301
  msgid "Children"
4270
4302
  msgstr ""
4271
4303
 
@@ -4339,8 +4371,8 @@ msgstr ""
4339
4371
  msgid "Login failures"
4340
4372
  msgstr ""
4341
4373
 
4342
- #: lino/modlib/blacklist/models.py:55 lino/modlib/users/actions.py:71
4343
- #: lino/modlib/users/actions.py:506 lino/modlib/users/models.py:97
4374
+ #: lino/modlib/blacklist/models.py:55 lino/modlib/users/actions.py:70
4375
+ #: lino/modlib/users/actions.py:504 lino/modlib/users/models.py:95
4344
4376
  #: lino/modlib/users/ui.py:400
4345
4377
  msgid "Username"
4346
4378
  msgstr ""
@@ -4363,9 +4395,9 @@ msgstr ""
4363
4395
 
4364
4396
  #: lino/modlib/bootstrap3/config/bootstrap3/base.html:33
4365
4397
  #: lino/modlib/bootstrap3/views.py:49 lino/modlib/extjs/ext_renderer.py:619
4366
- #: lino/modlib/forms/views.py:50 lino/modlib/publisher/choicelists.py:230
4367
- #: lino/modlib/publisher/config/publisher/page.pub.html:10
4368
- #: lino/modlib/publisher/config/publisher/page.pub.html:12
4398
+ #: lino/modlib/forms/views.py:50 lino/modlib/publisher/choicelists.py:251
4399
+ #: lino/modlib/publisher/config/publisher/page.pub.html:16
4400
+ #: lino/modlib/publisher/config/publisher/page.pub.html:18
4369
4401
  msgid "Home"
4370
4402
  msgstr ""
4371
4403
 
@@ -4379,7 +4411,7 @@ msgstr ""
4379
4411
  #: lino/modlib/bootstrap3/views.py:148 lino/modlib/bootstrap3/views.py:226
4380
4412
  #: lino/modlib/extjs/config/extjs/linoweb.js:3815
4381
4413
  #: lino/modlib/forms/views.py:132 lino/modlib/forms/views.py:206
4382
- #: lino/modlib/odata/views.py:72 lino/modlib/publisher/models.py:72
4414
+ #: lino/modlib/odata/views.py:72 lino/modlib/publisher/models.py:78
4383
4415
  msgid "Previous page"
4384
4416
  msgstr ""
4385
4417
 
@@ -4399,7 +4431,7 @@ msgstr ""
4399
4431
 
4400
4432
  #: lino/modlib/bootstrap3/config/bootstrap3/base.html:36
4401
4433
  #: lino/modlib/extjs/__init__.py:56
4402
- #: lino/modlib/publisher/config/publisher/page.pub.html:15
4434
+ #: lino/modlib/publisher/config/publisher/page.pub.html:21
4403
4435
  msgid "Admin"
4404
4436
  msgstr ""
4405
4437
 
@@ -4494,52 +4526,52 @@ msgstr ""
4494
4526
  msgid "Data checkers"
4495
4527
  msgstr ""
4496
4528
 
4497
- #: lino/modlib/checkdata/models.py:45 lino/modlib/checkdata/models.py:83
4529
+ #: lino/modlib/checkdata/models.py:49 lino/modlib/checkdata/models.py:87
4498
4530
  msgid "Check data"
4499
4531
  msgstr ""
4500
4532
 
4501
- #: lino/modlib/checkdata/models.py:75 lino/modlib/checkdata/models.py:108
4533
+ #: lino/modlib/checkdata/models.py:79 lino/modlib/checkdata/models.py:112
4502
4534
  msgid "Fix data problems"
4503
4535
  msgstr ""
4504
4536
 
4505
- #: lino/modlib/checkdata/models.py:116
4537
+ #: lino/modlib/checkdata/models.py:130
4506
4538
  msgid "Fix all data problems"
4507
4539
  msgstr ""
4508
4540
 
4509
- #: lino/modlib/checkdata/models.py:130
4541
+ #: lino/modlib/checkdata/models.py:144
4510
4542
  msgid "Data problem message"
4511
4543
  msgstr ""
4512
4544
 
4513
- #: lino/modlib/checkdata/models.py:131
4545
+ #: lino/modlib/checkdata/models.py:145
4514
4546
  msgid "Data problem messages"
4515
4547
  msgstr ""
4516
4548
 
4517
- #: lino/modlib/checkdata/models.py:139
4549
+ #: lino/modlib/checkdata/models.py:153
4518
4550
  msgid "Checker"
4519
4551
  msgstr ""
4520
4552
 
4521
- #: lino/modlib/checkdata/models.py:142
4553
+ #: lino/modlib/checkdata/models.py:156
4522
4554
  msgid "Message text"
4523
4555
  msgstr ""
4524
4556
 
4525
- #: lino/modlib/checkdata/models.py:165
4557
+ #: lino/modlib/checkdata/models.py:184
4526
4558
  msgid "Responsible"
4527
4559
  msgstr ""
4528
4560
 
4529
- #: lino/modlib/checkdata/models.py:169 lino/modlib/gfks/models.py:139
4561
+ #: lino/modlib/checkdata/models.py:188 lino/modlib/gfks/models.py:139
4530
4562
  msgid "Database object"
4531
4563
  msgstr ""
4532
4564
 
4533
- #: lino/modlib/checkdata/models.py:241
4565
+ #: lino/modlib/checkdata/models.py:260
4534
4566
  msgid "Data problem messages assigned to me"
4535
4567
  msgstr ""
4536
4568
 
4537
- #: lino/modlib/checkdata/models.py:256
4569
+ #: lino/modlib/checkdata/models.py:275
4538
4570
  #, python-brace-format
4539
4571
  msgid "There are {0} data problem messages assigned to you."
4540
4572
  msgstr ""
4541
4573
 
4542
- #: lino/modlib/checkdata/models.py:275
4574
+ #: lino/modlib/checkdata/models.py:297
4543
4575
  msgid "Show data problems"
4544
4576
  msgstr ""
4545
4577
 
@@ -4757,11 +4789,11 @@ msgstr ""
4757
4789
  msgid "Dupe control"
4758
4790
  msgstr ""
4759
4791
 
4760
- #: lino/modlib/dupable/mixins.py:181
4792
+ #: lino/modlib/dupable/mixins.py:179
4761
4793
  msgid "Check for similar objects"
4762
4794
  msgstr ""
4763
4795
 
4764
- #: lino/modlib/dupable/mixins.py:186
4796
+ #: lino/modlib/dupable/mixins.py:184
4765
4797
  #, python-brace-format
4766
4798
  msgid "Similar clients: {clients}"
4767
4799
  msgstr ""
@@ -4778,15 +4810,15 @@ msgstr ""
4778
4810
  msgid "Similar objects"
4779
4811
  msgstr ""
4780
4812
 
4781
- #: lino/modlib/export_excel/__init__.py:18
4813
+ #: lino/modlib/export_excel/__init__.py:13
4782
4814
  msgid "Export to Excel xls format"
4783
4815
  msgstr ""
4784
4816
 
4785
- #: lino/modlib/export_excel/models.py:122
4817
+ #: lino/modlib/export_excel/models.py:124
4786
4818
  msgid "Export to .xls"
4787
4819
  msgstr ""
4788
4820
 
4789
- #: lino/modlib/export_excel/models.py:123
4821
+ #: lino/modlib/export_excel/models.py:125
4790
4822
  msgid "Export this table as an .xls document"
4791
4823
  msgstr ""
4792
4824
 
@@ -4803,7 +4835,7 @@ msgid "as"
4803
4835
  msgstr ""
4804
4836
 
4805
4837
  #: lino/modlib/extjs/ext_renderer.py:511 lino/modlib/users/__init__.py:20
4806
- #: lino/modlib/users/actions.py:245 lino/modlib/users/ui.py:164
4838
+ #: lino/modlib/users/actions.py:243 lino/modlib/users/ui.py:164
4807
4839
  msgid "My settings"
4808
4840
  msgstr ""
4809
4841
 
@@ -4834,22 +4866,22 @@ msgid ""
4834
4866
  "the site"
4835
4867
  msgstr ""
4836
4868
 
4837
- #: lino/modlib/extjs/views.py:372
4869
+ #: lino/modlib/extjs/views.py:371
4838
4870
  #, python-brace-format
4839
4871
  msgid "Row {pk} is not visible here."
4840
4872
  msgstr ""
4841
4873
 
4842
- #: lino/modlib/extjs/views.py:382
4874
+ #: lino/modlib/extjs/views.py:381
4843
4875
  #, python-brace-format
4844
4876
  msgid "Neither is it visible in {table}."
4845
4877
  msgstr ""
4846
4878
 
4847
- #: lino/modlib/extjs/views.py:388
4879
+ #: lino/modlib/extjs/views.py:387
4848
4880
  #, python-brace-format
4849
4881
  msgid "But you can see it in {}."
4850
4882
  msgstr ""
4851
4883
 
4852
- #: lino/modlib/extjs/views.py:652
4884
+ #: lino/modlib/extjs/views.py:651
4853
4885
  #, python-format
4854
4886
  msgid "List contains more than %d rows"
4855
4887
  msgstr ""
@@ -4982,15 +5014,15 @@ msgid "Select another view of this report"
4982
5014
  msgstr ""
4983
5015
 
4984
5016
  #: lino/modlib/extjs/config/extjs/linoweb.js:3810
4985
- #: lino/modlib/publisher/models.py:48
5017
+ #: lino/modlib/publisher/models.py:54
4986
5018
  #: lino/modlib/weasyprint/config/weasyprint/base.weasy.html:35
4987
- #: lino/modlib/weasyprint/config/weasyprint/base.weasy.html:94
5019
+ #: lino/modlib/weasyprint/config/weasyprint/base.weasy.html:105
4988
5020
  msgid "Page"
4989
5021
  msgstr ""
4990
5022
 
4991
5023
  #: lino/modlib/extjs/config/extjs/linoweb.js:3811
4992
5024
  #: lino/modlib/weasyprint/config/weasyprint/base.weasy.html:35
4993
- #: lino/modlib/weasyprint/config/weasyprint/base.weasy.html:94
5025
+ #: lino/modlib/weasyprint/config/weasyprint/base.weasy.html:105
4994
5026
  #, python-brace-format
4995
5027
  msgid "of {0}"
4996
5028
  msgstr ""
@@ -5021,12 +5053,12 @@ msgid "Controlled by"
5021
5053
  msgstr ""
5022
5054
 
5023
5055
  #: lino/modlib/gfks/mixins.py:31 lino/modlib/gfks/mixins.py:53
5024
- #: lino/modlib/memo/models.py:37
5056
+ #: lino/modlib/memo/models.py:38
5025
5057
  msgid "(type)"
5026
5058
  msgstr ""
5027
5059
 
5028
5060
  #: lino/modlib/gfks/mixins.py:39 lino/modlib/gfks/mixins.py:49
5029
- #: lino/modlib/memo/models.py:45
5061
+ #: lino/modlib/memo/models.py:46
5030
5062
  msgid "(object)"
5031
5063
  msgstr ""
5032
5064
 
@@ -5058,43 +5090,43 @@ msgstr ""
5058
5090
  msgid "content types"
5059
5091
  msgstr ""
5060
5092
 
5061
- #: lino/modlib/help/models.py:26
5093
+ #: lino/modlib/help/models.py:25
5062
5094
  msgid "Open Help Window"
5063
5095
  msgstr ""
5064
5096
 
5065
- #: lino/modlib/help/models.py:65
5097
+ #: lino/modlib/help/models.py:66
5066
5098
  msgid "Site contact type"
5067
5099
  msgstr ""
5068
5100
 
5069
- #: lino/modlib/help/models.py:66
5101
+ #: lino/modlib/help/models.py:67
5070
5102
  msgid "Site contact types"
5071
5103
  msgstr ""
5072
5104
 
5073
- #: lino/modlib/help/models.py:70 lino/modlib/system/models.py:101
5105
+ #: lino/modlib/help/models.py:71 lino/modlib/system/models.py:101
5074
5106
  msgid "Site owner"
5075
5107
  msgstr ""
5076
5108
 
5077
- #: lino/modlib/help/models.py:71
5109
+ #: lino/modlib/help/models.py:72
5078
5110
  msgid "Server administrator"
5079
5111
  msgstr ""
5080
5112
 
5081
- #: lino/modlib/help/models.py:72
5113
+ #: lino/modlib/help/models.py:73
5082
5114
  msgid "Site administrator"
5083
5115
  msgstr ""
5084
5116
 
5085
- #: lino/modlib/help/models.py:73
5117
+ #: lino/modlib/help/models.py:74
5086
5118
  msgid "Hotline"
5087
5119
  msgstr ""
5088
5120
 
5089
- #: lino/modlib/help/models.py:78
5121
+ #: lino/modlib/help/models.py:79
5090
5122
  msgid "Site contact"
5091
5123
  msgstr ""
5092
5124
 
5093
- #: lino/modlib/help/models.py:79
5125
+ #: lino/modlib/help/models.py:80
5094
5126
  msgid "Site contacts"
5095
5127
  msgstr ""
5096
5128
 
5097
- #: lino/modlib/help/fixtures/demo2.py:21
5129
+ #: lino/modlib/help/fixtures/demo2.py:22
5098
5130
  msgid "Mon and Fri from 11:30 to 12:00"
5099
5131
  msgstr ""
5100
5132
 
@@ -5207,11 +5239,15 @@ msgstr ""
5207
5239
  msgid "Jinja templates"
5208
5240
  msgstr ""
5209
5241
 
5210
- #: lino/modlib/jinja/mixins.py:66
5242
+ #: lino/modlib/jinja/mixins.py:78
5211
5243
  #, python-brace-format
5212
5244
  msgid "XML validation failed: {}"
5213
5245
  msgstr ""
5214
5246
 
5247
+ #: lino/modlib/jinja/mixins.py:87
5248
+ msgid "XML file"
5249
+ msgstr ""
5250
+
5215
5251
  #: lino/modlib/languages/models.py:20 lino/utils/mldbc/fields.py:79
5216
5252
  msgid "Language"
5217
5253
  msgstr ""
@@ -5264,49 +5300,71 @@ msgstr ""
5264
5300
  msgid "Numeric value"
5265
5301
  msgstr ""
5266
5302
 
5267
- #: lino/modlib/linod/mixins.py:34
5303
+ #: lino/modlib/linod/mixins.py:30
5268
5304
  msgid "Run now"
5269
5305
  msgstr ""
5270
5306
 
5271
- #: lino/modlib/linod/mixins.py:35
5307
+ #: lino/modlib/linod/mixins.py:31
5272
5308
  msgid "Mark the task as to be executed asap by linod."
5273
5309
  msgstr ""
5274
5310
 
5275
- #: lino/modlib/linod/mixins.py:65 lino/modlib/linod/mixins.py:155
5311
+ #: lino/modlib/linod/mixins.py:52
5312
+ #, python-brace-format
5313
+ msgid "{0} requested to run this task at {1}."
5314
+ msgstr ""
5315
+
5316
+ #: lino/modlib/linod/mixins.py:64
5317
+ msgid "Cancel request"
5318
+ msgstr ""
5319
+
5320
+ #: lino/modlib/linod/mixins.py:65
5321
+ msgid "Cancel the request to run this task asap."
5322
+ msgstr ""
5323
+
5324
+ #: lino/modlib/linod/mixins.py:92 lino/modlib/linod/mixins.py:203
5276
5325
  msgid "Disabled"
5277
5326
  msgstr ""
5278
5327
 
5279
- #: lino/modlib/linod/mixins.py:67
5328
+ #: lino/modlib/linod/mixins.py:94
5280
5329
  msgid "Started at"
5281
5330
  msgstr ""
5282
5331
 
5283
- #: lino/modlib/linod/mixins.py:68
5332
+ #: lino/modlib/linod/mixins.py:95
5284
5333
  msgid "Ended at"
5285
5334
  msgstr ""
5286
5335
 
5287
- #: lino/modlib/linod/mixins.py:70
5336
+ #: lino/modlib/linod/mixins.py:96
5337
+ msgid "Requested at"
5338
+ msgstr ""
5339
+
5340
+ #: lino/modlib/linod/mixins.py:98
5288
5341
  msgid "Logged messages"
5289
5342
  msgstr ""
5290
5343
 
5291
- #: lino/modlib/linod/mixins.py:109
5344
+ #: lino/modlib/linod/mixins.py:148
5292
5345
  #, python-brace-format
5293
5346
  msgid "{} is already running"
5294
5347
  msgstr ""
5295
5348
 
5296
- #: lino/modlib/linod/mixins.py:153
5349
+ #: lino/modlib/linod/mixins.py:198
5297
5350
  #, python-brace-format
5298
5351
  msgid "Running since {}"
5299
5352
  msgstr ""
5300
5353
 
5301
- #: lino/modlib/linod/mixins.py:158 lino/modlib/linod/mixins.py:162
5354
+ #: lino/modlib/linod/mixins.py:200
5355
+ #, python-brace-format
5356
+ msgid "Requested to run asap (since {})"
5357
+ msgstr ""
5358
+
5359
+ #: lino/modlib/linod/mixins.py:206 lino/modlib/linod/mixins.py:210
5302
5360
  msgid "Not scheduled"
5303
5361
  msgstr ""
5304
5362
 
5305
- #: lino/modlib/linod/mixins.py:159
5363
+ #: lino/modlib/linod/mixins.py:207
5306
5364
  msgid "Scheduled to run asap"
5307
5365
  msgstr ""
5308
5366
 
5309
- #: lino/modlib/linod/mixins.py:163
5367
+ #: lino/modlib/linod/mixins.py:211
5310
5368
  #, python-brace-format
5311
5369
  msgid "Scheduled to run at {}"
5312
5370
  msgstr ""
@@ -5328,56 +5386,64 @@ msgstr ""
5328
5386
  msgid "No {} for {}"
5329
5387
  msgstr ""
5330
5388
 
5331
- #: lino/modlib/memo/mixins.py:222 lino/modlib/memo/mixins.py:251
5389
+ #: lino/modlib/memo/mixins.py:223 lino/modlib/memo/mixins.py:252
5332
5390
  #: lino/modlib/notify/models.py:132
5333
5391
  msgid "Body"
5334
5392
  msgstr ""
5335
5393
 
5336
- #: lino/modlib/memo/mixins.py:223 lino/modlib/memo/mixins.py:252
5337
- #: lino/modlib/publisher/mixins.py:23 lino/modlib/publisher/ui.py:101
5394
+ #: lino/modlib/memo/mixins.py:224 lino/modlib/memo/mixins.py:253
5395
+ #: lino/modlib/publisher/mixins.py:24 lino/modlib/publisher/ui.py:101
5338
5396
  msgid "Preview"
5339
5397
  msgstr ""
5340
5398
 
5341
- #: lino/modlib/memo/mixins.py:224 lino/modlib/memo/mixins.py:253
5399
+ #: lino/modlib/memo/mixins.py:225 lino/modlib/memo/mixins.py:254
5342
5400
  msgid "Preview (full)"
5343
5401
  msgstr ""
5344
5402
 
5345
- #: lino/modlib/memo/mixins.py:240
5403
+ #: lino/modlib/memo/mixins.py:241
5346
5404
  msgid "(no preview)"
5347
5405
  msgstr ""
5348
5406
 
5349
- #: lino/modlib/memo/mixins.py:269
5407
+ #: lino/modlib/memo/mixins.py:270
5350
5408
  msgid "Check for previewables needing update"
5351
5409
  msgstr ""
5352
5410
 
5353
- #: lino/modlib/memo/mixins.py:283
5411
+ #: lino/modlib/memo/mixins.py:284
5354
5412
  msgid "Preview differs from source."
5355
5413
  msgstr ""
5356
5414
 
5357
- #: lino/modlib/memo/mixins.py:287
5415
+ #: lino/modlib/memo/mixins.py:288
5358
5416
  msgid "Mentions differ from expected mentions."
5359
5417
  msgstr ""
5360
5418
 
5361
- #: lino/modlib/memo/models.py:21
5419
+ #: lino/modlib/memo/models.py:22
5362
5420
  msgid "Target"
5363
5421
  msgstr ""
5364
5422
 
5365
- #: lino/modlib/memo/models.py:28
5423
+ #: lino/modlib/memo/models.py:29
5366
5424
  msgid "Mention"
5367
5425
  msgstr ""
5368
5426
 
5369
- #: lino/modlib/memo/models.py:29
5427
+ #: lino/modlib/memo/models.py:30
5370
5428
  msgid "Mentions"
5371
5429
  msgstr ""
5372
5430
 
5373
- #: lino/modlib/memo/models.py:74
5431
+ #: lino/modlib/memo/models.py:76
5374
5432
  msgid "Referrer"
5375
5433
  msgstr ""
5376
5434
 
5377
- #: lino/modlib/memo/models.py:93
5435
+ #: lino/modlib/memo/models.py:97
5378
5436
  msgid "Mentioned by"
5379
5437
  msgstr ""
5380
5438
 
5439
+ #: lino/modlib/memo/models.py:108
5440
+ msgid "Insert reference"
5441
+ msgstr ""
5442
+
5443
+ #: lino/modlib/memo/models.py:130
5444
+ msgid "You must select a content type"
5445
+ msgstr ""
5446
+
5381
5447
  #: lino/modlib/notify/__init__.py:16
5382
5448
  msgid "Messages"
5383
5449
  msgstr ""
@@ -5435,12 +5501,12 @@ msgstr ""
5435
5501
  msgid "Weekly email digest"
5436
5502
  msgstr ""
5437
5503
 
5438
- #: lino/modlib/notify/mixins.py:18 lino/modlib/notify/mixins.py:30
5504
+ #: lino/modlib/notify/mixins.py:33 lino/modlib/notify/mixins.py:45
5439
5505
  #, python-brace-format
5440
5506
  msgid "{user} created {what}"
5441
5507
  msgstr ""
5442
5508
 
5443
- #: lino/modlib/notify/mixins.py:23 lino/modlib/notify/mixins.py:37
5509
+ #: lino/modlib/notify/mixins.py:38 lino/modlib/notify/mixins.py:52
5444
5510
  #, python-brace-format
5445
5511
  msgid "{user} modified {what}"
5446
5512
  msgstr ""
@@ -5494,7 +5560,7 @@ msgstr ""
5494
5560
  msgid "Seen"
5495
5561
  msgstr ""
5496
5562
 
5497
- #: lino/modlib/notify/fixtures/demo2.py:29
5563
+ #: lino/modlib/notify/fixtures/demo2.py:34
5498
5564
  #, python-brace-format
5499
5565
  msgid "Welcome on board, {}."
5500
5566
  msgstr ""
@@ -5721,55 +5787,60 @@ msgstr ""
5721
5787
  msgid "Data table"
5722
5788
  msgstr ""
5723
5789
 
5724
- #: lino/modlib/publisher/choicelists.py:200
5790
+ #: lino/modlib/publisher/choicelists.py:221
5725
5791
  msgid "Special page"
5726
5792
  msgstr ""
5727
5793
 
5728
- #: lino/modlib/publisher/choicelists.py:201
5794
+ #: lino/modlib/publisher/choicelists.py:222
5729
5795
  msgid "Special pages"
5730
5796
  msgstr ""
5731
5797
 
5732
- #: lino/modlib/publisher/choicelists.py:213 lino/modlib/publisher/models.py:49
5798
+ #: lino/modlib/publisher/choicelists.py:234 lino/modlib/publisher/models.py:55
5733
5799
  msgid "Pages"
5734
5800
  msgstr ""
5735
5801
 
5736
- #: lino/modlib/publisher/choicelists.py:222
5802
+ #: lino/modlib/publisher/choicelists.py:243
5737
5803
  msgid "(create)"
5738
5804
  msgstr ""
5739
5805
 
5740
- #: lino/modlib/publisher/choicelists.py:230
5806
+ #: lino/modlib/publisher/choicelists.py:251
5741
5807
  msgid "Welcome to our great website."
5742
5808
  msgstr ""
5743
5809
 
5744
- #: lino/modlib/publisher/choicelists.py:231
5810
+ #: lino/modlib/publisher/choicelists.py:252
5745
5811
  msgid "Terms and conditions"
5746
5812
  msgstr ""
5747
5813
 
5748
- #: lino/modlib/publisher/choicelists.py:232
5814
+ #: lino/modlib/publisher/choicelists.py:253
5749
5815
  msgid "Privacy policy"
5750
5816
  msgstr ""
5751
5817
 
5752
- #: lino/modlib/publisher/choicelists.py:233
5818
+ #: lino/modlib/publisher/choicelists.py:254
5753
5819
  msgid "Cookie settings"
5754
5820
  msgstr ""
5755
5821
 
5756
- #: lino/modlib/publisher/choicelists.py:234
5822
+ #: lino/modlib/publisher/choicelists.py:255
5757
5823
  msgid "Copyright"
5758
5824
  msgstr ""
5759
5825
 
5760
- #: lino/modlib/publisher/choicelists.py:235
5826
+ #: lino/modlib/publisher/choicelists.py:256
5827
+ #: lino/modlib/publisher/fixtures/synodalworld.py:7
5761
5828
  msgid "About us"
5762
5829
  msgstr ""
5763
5830
 
5764
- #: lino/modlib/publisher/models.py:58
5831
+ #: lino/modlib/publisher/mixins.py:156
5832
+ msgid "Main image"
5833
+ msgstr ""
5834
+
5835
+ #: lino/modlib/publisher/models.py:64
5765
5836
  msgid "Title"
5766
5837
  msgstr ""
5767
5838
 
5768
- #: lino/modlib/publisher/models.py:65
5839
+ #: lino/modlib/publisher/models.py:71
5769
5840
  msgid "Translated from"
5770
5841
  msgstr ""
5771
5842
 
5772
- #: lino/modlib/publisher/models.py:180
5843
+ #: lino/modlib/publisher/models.py:208
5773
5844
  msgid "Children:"
5774
5845
  msgstr ""
5775
5846
 
@@ -5781,6 +5852,34 @@ msgstr ""
5781
5852
  msgid "Translations"
5782
5853
  msgstr ""
5783
5854
 
5855
+ #: lino/modlib/publisher/fixtures/synodalworld.py:4
5856
+ msgid "Mission"
5857
+ msgstr ""
5858
+
5859
+ #: lino/modlib/publisher/fixtures/synodalworld.py:5
5860
+ msgid "Maxim"
5861
+ msgstr ""
5862
+
5863
+ #: lino/modlib/publisher/fixtures/synodalworld.py:6
5864
+ msgid "Propaganda"
5865
+ msgstr ""
5866
+
5867
+ #: lino/modlib/publisher/fixtures/synodalworld.py:8
5868
+ msgid "Team"
5869
+ msgstr ""
5870
+
5871
+ #: lino/modlib/publisher/fixtures/synodalworld.py:9
5872
+ msgid "History"
5873
+ msgstr ""
5874
+
5875
+ #: lino/modlib/publisher/fixtures/synodalworld.py:10
5876
+ msgid "Contact"
5877
+ msgstr ""
5878
+
5879
+ #: lino/modlib/publisher/fixtures/synodalworld.py:11
5880
+ msgid "Terms & conditions"
5881
+ msgstr ""
5882
+
5784
5883
  #: lino/modlib/restful/__init__.py:33
5785
5884
  msgid "Restful"
5786
5885
  msgstr ""
@@ -6427,11 +6526,11 @@ msgstr ""
6427
6526
  msgid "Manage the list of uploaded files."
6428
6527
  msgstr ""
6429
6528
 
6430
- #: lino/modlib/uploads/ui.py:208
6529
+ #: lino/modlib/uploads/ui.py:206
6431
6530
  msgid "Edit metadata of the uploaded file."
6432
6531
  msgstr ""
6433
6532
 
6434
- #: lino/modlib/uploads/ui.py:225
6533
+ #: lino/modlib/uploads/ui.py:223
6435
6534
  msgid "Open the file in a new browser window"
6436
6535
  msgstr ""
6437
6536
 
@@ -6452,173 +6551,173 @@ msgstr ""
6452
6551
  msgid "Must build thumbnail for {}"
6453
6552
  msgstr ""
6454
6553
 
6455
- #: lino/modlib/users/__init__.py:11 lino/modlib/users/models.py:81
6554
+ #: lino/modlib/users/__init__.py:11 lino/modlib/users/models.py:79
6456
6555
  msgid "Users"
6457
6556
  msgstr ""
6458
6557
 
6459
- #: lino/modlib/users/actions.py:25
6558
+ #: lino/modlib/users/actions.py:24
6460
6559
  #, python-brace-format
6461
6560
  msgid "Welcome on {site}"
6462
6561
  msgstr ""
6463
6562
 
6464
- #: lino/modlib/users/actions.py:42 lino/modlib/users/actions.py:102
6563
+ #: lino/modlib/users/actions.py:41 lino/modlib/users/actions.py:101
6465
6564
  #, python-brace-format
6466
6565
  msgid "The username {} is taken. Please choose another one"
6467
6566
  msgstr ""
6468
6567
 
6469
- #: lino/modlib/users/actions.py:54
6568
+ #: lino/modlib/users/actions.py:53
6470
6569
  #, python-brace-format
6471
6570
  msgid ""
6472
6571
  "Your request has been registered. An email will shortly be sent to "
6473
6572
  "{0}Please check your emails."
6474
6573
  msgstr ""
6475
6574
 
6476
- #: lino/modlib/users/actions.py:66
6575
+ #: lino/modlib/users/actions.py:65
6477
6576
  msgid "Create Account"
6478
6577
  msgstr ""
6479
6578
 
6480
- #: lino/modlib/users/actions.py:72
6579
+ #: lino/modlib/users/actions.py:71
6481
6580
  msgid "Email"
6482
6581
  msgstr ""
6483
6582
 
6484
- #: lino/modlib/users/actions.py:73 lino/modlib/users/actions.py:507
6583
+ #: lino/modlib/users/actions.py:72 lino/modlib/users/actions.py:505
6485
6584
  msgid "Password"
6486
6585
  msgstr ""
6487
6586
 
6488
- #: lino/modlib/users/actions.py:129
6587
+ #: lino/modlib/users/actions.py:127
6489
6588
  msgid "Verify"
6490
6589
  msgstr ""
6491
6590
 
6492
- #: lino/modlib/users/actions.py:139
6591
+ #: lino/modlib/users/actions.py:137
6493
6592
  msgid "Verification code"
6494
6593
  msgstr ""
6495
6594
 
6496
- #: lino/modlib/users/actions.py:150
6595
+ #: lino/modlib/users/actions.py:148
6497
6596
  msgid "Sorry, your verification code has expired."
6498
6597
  msgstr ""
6499
6598
 
6500
- #: lino/modlib/users/actions.py:153
6599
+ #: lino/modlib/users/actions.py:151
6501
6600
  msgid "Sorry, wrong verification code."
6502
6601
  msgstr ""
6503
6602
 
6504
- #: lino/modlib/users/actions.py:159
6603
+ #: lino/modlib/users/actions.py:157
6505
6604
  #, python-brace-format
6506
6605
  msgid "Your email address {} is now verified."
6507
6606
  msgstr ""
6508
6607
 
6509
- #: lino/modlib/users/actions.py:163
6608
+ #: lino/modlib/users/actions.py:161
6510
6609
  msgid "Your new password has been activated."
6511
6610
  msgstr ""
6512
6611
 
6513
- #: lino/modlib/users/actions.py:165
6612
+ #: lino/modlib/users/actions.py:163
6514
6613
  msgid "Please sign in."
6515
6614
  msgstr ""
6516
6615
 
6517
- #: lino/modlib/users/actions.py:213
6616
+ #: lino/modlib/users/actions.py:211
6518
6617
  msgid "Invalid email address or verification code."
6519
6618
  msgstr ""
6520
6619
 
6521
- #: lino/modlib/users/actions.py:260
6620
+ #: lino/modlib/users/actions.py:258
6522
6621
  msgid "Send welcome mail"
6523
6622
  msgstr ""
6524
6623
 
6525
- #: lino/modlib/users/actions.py:294
6624
+ #: lino/modlib/users/actions.py:292
6526
6625
  #, python-brace-format
6527
6626
  msgid "Welcome mail has been sent to {}."
6528
6627
  msgstr ""
6529
6628
 
6530
- #: lino/modlib/users/actions.py:297
6629
+ #: lino/modlib/users/actions.py:295
6531
6630
  #, python-brace-format
6532
6631
  msgid "Send welcome mail to {} ?"
6533
6632
  msgstr ""
6534
6633
 
6535
- #: lino/modlib/users/actions.py:306
6634
+ #: lino/modlib/users/actions.py:304
6536
6635
  msgid "Change password"
6537
6636
  msgstr ""
6538
6637
 
6539
- #: lino/modlib/users/actions.py:309
6638
+ #: lino/modlib/users/actions.py:307
6540
6639
  msgid "Current password"
6541
6640
  msgstr ""
6542
6641
 
6543
- #: lino/modlib/users/actions.py:310 lino/modlib/users/actions.py:369
6642
+ #: lino/modlib/users/actions.py:308 lino/modlib/users/actions.py:367
6544
6643
  msgid "New password"
6545
6644
  msgstr ""
6546
6645
 
6547
- #: lino/modlib/users/actions.py:311 lino/modlib/users/actions.py:370
6646
+ #: lino/modlib/users/actions.py:309 lino/modlib/users/actions.py:368
6548
6647
  msgid "New password again"
6549
6648
  msgstr ""
6550
6649
 
6551
- #: lino/modlib/users/actions.py:353
6650
+ #: lino/modlib/users/actions.py:351
6552
6651
  #, python-brace-format
6553
6652
  msgid "New password has been set for {}."
6554
6653
  msgstr ""
6555
6654
 
6556
- #: lino/modlib/users/actions.py:362
6655
+ #: lino/modlib/users/actions.py:360
6557
6656
  msgid "Reset password"
6558
6657
  msgstr ""
6559
6658
 
6560
- #: lino/modlib/users/actions.py:368
6659
+ #: lino/modlib/users/actions.py:366
6561
6660
  msgid "Username (optional)"
6562
6661
  msgstr ""
6563
6662
 
6564
- #: lino/modlib/users/actions.py:396
6663
+ #: lino/modlib/users/actions.py:394
6565
6664
  #, python-brace-format
6566
6665
  msgid "No active users having {}"
6567
6666
  msgstr ""
6568
6667
 
6569
- #: lino/modlib/users/actions.py:400
6668
+ #: lino/modlib/users/actions.py:398
6570
6669
  #, python-brace-format
6571
6670
  msgid "More than one active users having {}"
6572
6671
  msgstr ""
6573
6672
 
6574
- #: lino/modlib/users/actions.py:412
6673
+ #: lino/modlib/users/actions.py:410
6575
6674
  #, python-brace-format
6576
6675
  msgid "Verification link has been sent to {}."
6577
6676
  msgstr ""
6578
6677
 
6579
- #: lino/modlib/users/actions.py:417
6678
+ #: lino/modlib/users/actions.py:415
6580
6679
  #, python-brace-format
6581
6680
  msgid "Send verification link to {} ?"
6582
6681
  msgstr ""
6583
6682
 
6584
- #: lino/modlib/users/actions.py:422
6683
+ #: lino/modlib/users/actions.py:420
6585
6684
  msgid "Sign out"
6586
6685
  msgstr ""
6587
6686
 
6588
- #: lino/modlib/users/actions.py:432
6687
+ #: lino/modlib/users/actions.py:430
6589
6688
  #, python-brace-format
6590
6689
  msgid "User {} logged out."
6591
6690
  msgstr ""
6592
6691
 
6593
- #: lino/modlib/users/actions.py:461
6692
+ #: lino/modlib/users/actions.py:459
6594
6693
  #, python-brace-format
6595
6694
  msgid "There are more than {} active user sessions. Please try again later."
6596
6695
  msgstr ""
6597
6696
 
6598
- #: lino/modlib/users/actions.py:503
6697
+ #: lino/modlib/users/actions.py:501
6599
6698
  msgid "Sign in"
6600
6699
  msgstr ""
6601
6700
 
6602
- #: lino/modlib/users/actions.py:509
6701
+ #: lino/modlib/users/actions.py:507
6603
6702
  msgid "Or sign in with"
6604
6703
  msgstr ""
6605
6704
 
6606
- #: lino/modlib/users/actions.py:537
6705
+ #: lino/modlib/users/actions.py:535
6607
6706
  #, python-brace-format
6608
6707
  msgid "Failed to sign in as {}."
6609
6708
  msgstr ""
6610
6709
 
6611
- #: lino/modlib/users/actions.py:543
6710
+ #: lino/modlib/users/actions.py:541
6612
6711
  #, python-brace-format
6613
6712
  msgid "Now signed in as {}"
6614
6713
  msgstr ""
6615
6714
 
6616
- #: lino/modlib/users/actions.py:548 lino/modlib/users/actions.py:553
6617
- #: lino/modlib/users/actions.py:557
6715
+ #: lino/modlib/users/actions.py:546 lino/modlib/users/actions.py:551
6716
+ #: lino/modlib/users/actions.py:555
6618
6717
  msgid "Connect account"
6619
6718
  msgstr ""
6620
6719
 
6621
- #: lino/modlib/users/actions.py:556
6720
+ #: lino/modlib/users/actions.py:554
6622
6721
  msgid "Cancel"
6623
6722
  msgstr ""
6624
6723
 
@@ -6678,47 +6777,47 @@ msgstr ""
6678
6777
  msgid "{user} assigned you to {what}"
6679
6778
  msgstr ""
6680
6779
 
6681
- #: lino/modlib/users/models.py:99
6780
+ #: lino/modlib/users/models.py:97
6682
6781
  msgid "Initials"
6683
6782
  msgstr ""
6684
6783
 
6685
- #: lino/modlib/users/models.py:101
6784
+ #: lino/modlib/users/models.py:99
6686
6785
  msgid "Nickname"
6687
6786
  msgstr ""
6688
6787
 
6689
- #: lino/modlib/users/models.py:106
6788
+ #: lino/modlib/users/models.py:104
6690
6789
  msgid "Remarks"
6691
6790
  msgstr ""
6692
6791
 
6693
- #: lino/modlib/users/models.py:187
6792
+ #: lino/modlib/users/models.py:185
6694
6793
  msgid "Status"
6695
6794
  msgstr ""
6696
6795
 
6697
- #: lino/modlib/users/models.py:189
6796
+ #: lino/modlib/users/models.py:187
6698
6797
  msgid "Active"
6699
6798
  msgstr ""
6700
6799
 
6701
- #: lino/modlib/users/models.py:189
6800
+ #: lino/modlib/users/models.py:187
6702
6801
  msgid "Inactive"
6703
6802
  msgstr ""
6704
6803
 
6705
- #: lino/modlib/users/models.py:190
6804
+ #: lino/modlib/users/models.py:188
6706
6805
  msgid "Verified"
6707
6806
  msgstr ""
6708
6807
 
6709
- #: lino/modlib/users/models.py:190
6808
+ #: lino/modlib/users/models.py:188
6710
6809
  msgid "Not verified"
6711
6810
  msgstr ""
6712
6811
 
6713
- #: lino/modlib/users/models.py:192
6812
+ #: lino/modlib/users/models.py:190
6714
6813
  msgid "Password reset"
6715
6814
  msgstr ""
6716
6815
 
6717
- #: lino/modlib/users/models.py:413
6816
+ #: lino/modlib/users/models.py:411
6718
6817
  msgid "Authority"
6719
6818
  msgstr ""
6720
6819
 
6721
- #: lino/modlib/users/models.py:414
6820
+ #: lino/modlib/users/models.py:412
6722
6821
  msgid "Authorities"
6723
6822
  msgstr ""
6724
6823
 
@@ -6776,17 +6875,17 @@ msgstr ""
6776
6875
  msgid "Welcome letter"
6777
6876
  msgstr ""
6778
6877
 
6779
- #: lino/modlib/weasyprint/__init__.py:30
6878
+ #: lino/modlib/weasyprint/__init__.py:29
6780
6879
  msgid "WeasyPrint"
6781
6880
  msgstr ""
6782
6881
 
6783
6882
  #: lino/modlib/weasyprint/config/weasyprint/base.weasy.html:39
6784
- #: lino/modlib/weasyprint/config/weasyprint/base.weasy.html:88
6883
+ #: lino/modlib/weasyprint/config/weasyprint/base.weasy.html:99
6785
6884
  msgid "Printed"
6786
6885
  msgstr ""
6787
6886
 
6788
6887
  #: lino/modlib/weasyprint/config/weasyprint/base.weasy.html:39
6789
- #: lino/modlib/weasyprint/config/weasyprint/base.weasy.html:88
6888
+ #: lino/modlib/weasyprint/config/weasyprint/base.weasy.html:99
6790
6889
  msgid "at"
6791
6890
  msgstr ""
6792
6891
 
@@ -7047,3 +7146,65 @@ msgstr ""
7047
7146
  #~ msgid "All {0} files"
7048
7147
  #~ msgstr ""
7049
7148
 
7149
+ #~ msgid ""
7150
+ #~ "Adds a timestamp field which holds "
7151
+ #~ "the creation time of every individual"
7152
+ #~ " database object."
7153
+ #~ msgstr ""
7154
+
7155
+ #~ msgid "The time when this object was created."
7156
+ #~ msgstr ""
7157
+
7158
+ #~ msgid ""
7159
+ #~ "Adds a row action “Duplicate” which "
7160
+ #~ "duplicates (creates a clone of) the "
7161
+ #~ "object it was called on."
7162
+ #~ msgstr ""
7163
+
7164
+ #~ msgid ""
7165
+ #~ "The view that responds to "
7166
+ #~ "r'api/(?P<app_label>\\w+)/(?P<actor>\\w+)/(?P<pk>[^/]+)$'."
7167
+ #~ msgstr ""
7168
+
7169
+ #~ msgid "Height of header in mm. Set to None if you want no header."
7170
+ #~ msgstr ""
7171
+
7172
+ #~ msgid "Height of footer in mm. Set to None if you want no header."
7173
+ #~ msgstr ""
7174
+
7175
+ #~ msgid ""
7176
+ #~ "Width of top-right.jpg in mm. If"
7177
+ #~ " not given, Lino computes it based"
7178
+ #~ " on height."
7179
+ #~ msgstr ""
7180
+
7181
+ #~ msgid ""
7182
+ #~ "The first image file found in "
7183
+ #~ "config named either top-right.jpg or "
7184
+ #~ "top-right.png."
7185
+ #~ msgstr ""
7186
+
7187
+ #~ msgid ""
7188
+ #~ "The first image file found in "
7189
+ #~ "config named either header.jpg or "
7190
+ #~ "header.png."
7191
+ #~ msgstr ""
7192
+
7193
+ #~ msgid "Top and bottom page margin in mm."
7194
+ #~ msgstr ""
7195
+
7196
+ #~ msgid "A dictionary of sums to be collected using an arbitrary key."
7197
+ #~ msgstr ""
7198
+
7199
+ #~ msgid "Add the given value to the sum at the given key k."
7200
+ #~ msgstr ""
7201
+
7202
+ #~ msgid ""
7203
+ #~ "Always return the cached instance which"
7204
+ #~ " holds the one and only database "
7205
+ #~ "instance."
7206
+ #~ msgstr ""
7207
+
7208
+ #~ msgid "The password is the same for all of them: \"1234\"."
7209
+ #~ msgstr ""
7210
+