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