Skip to content
Snippets Groups Projects
Select Git revision
  • 83e26da23cf09f92e0d895d1ecf586602b5da4c3
  • master default protected
  • vertical_relations
  • lu_without_semantic_frames
  • hierarchy
  • additional-unification-filters
  • v0.1.1
  • v0.1.0
  • v0.0.9
  • v0.0.8
  • v0.0.7
  • v0.0.6
  • v0.0.5
  • v0.0.4
  • v0.0.3
  • v0.0.2
  • v0.0.1
17 results

choices.py

Blame
  • user avatar
    dcz authored
    3a46882d
    History
    choices.py 449 B
    from django.db import models
    from django.utils.translation import gettext_lazy as _
    
    
    class FrameStatus(models.TextChoices):
        NEW = "N", _("nowa")
        PROCESSING = "O", _("w obróbce")
        READY = "G", _("gotowe")
        VERIFIED = "S", _("sprawdzone")
        INVALID = "B", _("błędna")  # set by lexicographs
        NOT_MATCHING_UNIFIED_FRAME = "C", _("niepasująca")  # set by lexicographs
        BAD = "Z", _("zła")  # confirmed by super lexicographs