verboselib.cli.defaults   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 18
dl 0
loc 22
rs 10
c 0
b 0
f 0
1
DEFAULT_DOMAIN = "messages"
2
3
DEFAULT_LOCALE_DIR_NAME = "locale"
4
5
DEFAULT_IGNORE_PATTERNS = [
6
  ".*",
7
  "*~",
8
  "CVS",
9
  "__pycache__",
10
  "*.pyc",
11
]
12
13
DEFAULT_KEYWORDS = [
14
  "_",           "gettext",
15
  "L_",          "gettext_lazy",
16
  "N_:1,2",      "ngettext:1,2",
17
  "LN_:1,2",     "ngettext_lazy:1,2",
18
  "P_:1c,2",     "pgettext:1c,2",
19
  "LP_:1c,2",    "pgettext_lazy:1c,2",
20
  "NP_:1c,2,3",  "npgettext:1c,2,3",
21
  "LNP_:1c,2,3", "npgettext_lazy:1c,2,3",
22
]
23