-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
30 lines (26 loc) · 863 Bytes
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# -*- coding: utf-8 -*-
"""Config. Refer to README.md for documentation"""
"""
Location of the specify_datamodel.xml file
Default location varies depending on the system:
- Mac OS: /Applications/Specify/config/specify_datamodel.xml
- Linux: ~/Specify/config/specify_datamodel.xml
- Windows: C:\Program Files\Specify\config\
"""
data_model_xml_location = (
"/Users/maxpatiiuk/Downloads/specify_datamodel.xml"
)
# Location of the schema_localization.xml file
# You can get it from here:
# https://github.com/specify/specify6/blob/master/config/schema_localization.xml
schema_localization_xml_location = (
"/Users/maxpatiiuk/site/git/specify6/config/schema_localization.xml"
)
# Which languages to output
languages = {
"en": "English",
"pt": "Portuguese",
"pt_BR": "Portuguese (Brazilian)",
"ru_RU": "Russian",
"uk_UA": "Ukrainian",
}