2015-07-16 16:01:26 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
***************************************************************************
|
|
|
|
classification.py
|
|
|
|
---------------------
|
|
|
|
Date : July 2015
|
|
|
|
Copyright : (C) 2015 by Arnaud Morvan
|
|
|
|
Email : arnaud dot morvan at camptocamp dot com
|
|
|
|
***************************************************************************
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
***************************************************************************
|
|
|
|
"""
|
|
|
|
|
|
|
|
__author__ = 'Arnaud Morvan'
|
|
|
|
__date__ = 'July 2015'
|
|
|
|
__copyright__ = '(C) 2015, Arnaud Morvan'
|
|
|
|
# This will get replaced with a git SHA1 when you do a git archive
|
|
|
|
__revision__ = '$Format:%H$'
|
|
|
|
|
|
|
|
import os
|
|
|
|
from processing.core.Processing import Processing
|
|
|
|
from processing.gui.AlgorithmClassification import (
|
2016-04-28 18:27:45 +02:00
|
|
|
loadClassification, getClassificationEn)
|
2015-07-16 16:01:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
def updateTranslations():
|
|
|
|
"""Update processing.algs.translations module.
|
|
|
|
|
|
|
|
Need QGIS python API on python path, can be run from QGIS console. Example:
|
|
|
|
|
|
|
|
from processing.tools.translation import updateTranslations
|
|
|
|
updateTranslations()
|
|
|
|
"""
|
|
|
|
|
|
|
|
loadClassification()
|
|
|
|
|
|
|
|
f = open(os.path.join(os.path.dirname(__file__), '../algs/translations.py'), 'w')
|
|
|
|
f.write('''# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
Don't edit this file manually.
|
|
|
|
Update it from QGIS console:
|
|
|
|
|
|
|
|
from processing.tools.translation import updateTranslations
|
|
|
|
updateTranslations()
|
|
|
|
"""
|
|
|
|
|
2016-04-22 10:38:48 +02:00
|
|
|
from qgis.PyQt.QtCore import QCoreApplication
|
2015-07-16 16:01:26 +02:00
|
|
|
|
|
|
|
def translationShadow():
|
|
|
|
''')
|
|
|
|
groups = {}
|
|
|
|
for provider in Processing.providers:
|
|
|
|
f.write('''
|
|
|
|
"""{}"""
|
|
|
|
'''.format(provider.__class__.__name__))
|
|
|
|
for alg in provider.algs:
|
2016-04-28 18:27:45 +02:00
|
|
|
display_name = alg.name
|
2015-07-16 16:01:26 +02:00
|
|
|
f.write(" QCoreApplication.translate(\"{}\", \"{}\")\n"
|
|
|
|
.format(alg.__class__.__name__,
|
|
|
|
display_name.replace('"', '\\"')))
|
2016-03-21 04:58:12 +01:00
|
|
|
if alg.group not in groups:
|
2015-07-16 16:01:26 +02:00
|
|
|
groups[alg.group] = 'AlgorithmClassification'
|
|
|
|
group, subgroup = getClassificationEn(alg)
|
2016-03-21 04:58:12 +01:00
|
|
|
if group is not None and group not in groups:
|
2015-07-16 16:01:26 +02:00
|
|
|
groups[group] = 'AlgorithmClassification'
|
2016-03-21 04:58:12 +01:00
|
|
|
if subgroup is not None and subgroup not in groups:
|
2015-07-16 16:01:26 +02:00
|
|
|
groups[subgroup] = 'AlgorithmClassification'
|
|
|
|
|
|
|
|
f.write('''
|
|
|
|
"""Groups and subgroups"""
|
|
|
|
''')
|
|
|
|
for group, context in groups.iteritems():
|
|
|
|
f.write(" QCoreApplication.translate(\"{}\", \"{}\")\n"
|
|
|
|
.format(context,
|
|
|
|
group.replace('"', '\\"')))
|