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