-
Notifications
You must be signed in to change notification settings - Fork 1
/
buildout.cfg
60 lines (50 loc) · 1.02 KB
/
buildout.cfg
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[buildout]
extends = http://dist.plone.org/release/4-latest/versions.cfg
extensions = buildout.dumppickedversions
parts =
instance
omelette
babelpy
i18ndude
develop = .
[instance]
recipe = plone.recipe.zope2instance
user = admin:admin
http-address = 8080
eggs =
Plone
maurits.i18ntalk
# To force an early loading of our zcml:
#zcml =
# maurits.i18ntalk
locales = ${buildout:directory}/locales
environment-vars =
PTS_LANGUAGES en nl
zope_i18n_allowed_languages en nl
zope_i18n_compile_mo_files true
[omelette]
recipe = collective.recipe.omelette
eggs = ${instance:eggs}
[babelpy]
# Usage:
# bin/babelpy setup.py extract_messages
# Note: this currently extracts *all* domains, which is bad.
recipe = zc.recipe.egg
eggs =
babel
lingua
interpreter = babelpy
# Restrict to only this script:
#scripts = babelpy
[i18ndude]
recipe = zc.recipe.egg
eggs = i18ndude
[versions]
Babel = 0.9.6
babel = 0.9.6
collective.recipe.cmd = 0.5
i18ndude = 3.2.2
lingua = 1.3
polib = 1.0.1
xlrd = 0.8.0
xlwt = 0.7.4