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