remove unneeded Ox. prefix from path and file names

This commit is contained in:
rolux 2014-09-26 15:51:50 +02:00
commit 51696562f1
1365 changed files with 43 additions and 43 deletions

View file

@ -1,7 +1,7 @@
var path = Ox.PATH.replace('/build/', '/dev/'),
files = [
path + 'Ox/json/Ox.json',
path + 'Ox.UI/json/Ox.UI.json'
path + 'UI/json/UI.json'
],
strings = {
'inside Ox._()': {},

2
tools/locale/strings.py Normal file → Executable file
View file

@ -13,7 +13,7 @@ lines = []
path = './dev/'
files = []
for f in ['Ox/json/Ox.json', 'Ox.UI/json/Ox.UI.json']:
for f in ['Ox/json/Ox.json', 'UI/json/UI.json']:
with open(path + f) as fd:
for filename in json.load(fd)['files']:
if isinstance(filename, list):