pointblank 0.8.2__py3-none-any.whl → 0.8.4__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.
- pointblank/_constants.py +16 -0
- pointblank/_constants_translations.py +813 -1
- pointblank/data/api-docs.txt +3 -0
- pointblank/validate.py +260 -155
- {pointblank-0.8.2.dist-info → pointblank-0.8.4.dist-info}/METADATA +1 -1
- {pointblank-0.8.2.dist-info → pointblank-0.8.4.dist-info}/RECORD +9 -9
- {pointblank-0.8.2.dist-info → pointblank-0.8.4.dist-info}/WHEEL +0 -0
- {pointblank-0.8.2.dist-info → pointblank-0.8.4.dist-info}/licenses/LICENSE +0 -0
- {pointblank-0.8.2.dist-info → pointblank-0.8.4.dist-info}/top_level.txt +0 -0
pointblank/_constants.py
CHANGED
|
@@ -76,6 +76,15 @@ COMPARISON_OPERATORS = {
|
|
|
76
76
|
"col_vals_ne": "!=",
|
|
77
77
|
}
|
|
78
78
|
|
|
79
|
+
COMPARISON_OPERATORS_AR = {
|
|
80
|
+
"col_vals_gt": "أكبر من",
|
|
81
|
+
"col_vals_ge": "أكبر من أو يساوي",
|
|
82
|
+
"col_vals_lt": "أصغر من",
|
|
83
|
+
"col_vals_le": "أصغر من أو يساوي",
|
|
84
|
+
"col_vals_eq": "يساوي",
|
|
85
|
+
"col_vals_ne": "لا يساوي",
|
|
86
|
+
}
|
|
87
|
+
|
|
79
88
|
ROW_BASED_VALIDATION_TYPES = [
|
|
80
89
|
"col_vals_gt",
|
|
81
90
|
"col_vals_lt",
|
|
@@ -175,6 +184,13 @@ REPORTING_LANGUAGES = [
|
|
|
175
184
|
"nl",
|
|
176
185
|
"fi",
|
|
177
186
|
"is",
|
|
187
|
+
"ar",
|
|
188
|
+
"hi",
|
|
189
|
+
"el",
|
|
190
|
+
]
|
|
191
|
+
|
|
192
|
+
RTL_LANGUAGES = [
|
|
193
|
+
"ar",
|
|
178
194
|
]
|
|
179
195
|
|
|
180
196
|
SEVERITY_LEVEL_COLORS = {
|