mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
Function argument name should not be translatable
This commit is contained in:
parent
ae00eb965c
commit
54d093ed48
@ -86,7 +86,7 @@ for f in sorted(glob.glob('resources/function_help/json/*')):
|
||||
|
||||
if 'arguments' in v:
|
||||
for a in v['arguments']:
|
||||
cpp.write("\n << HelpArg( tr( \"{0}\" ), tr( \"{1}\" ), {2}, {3} )".format(
|
||||
cpp.write("\n << HelpArg( \"{0}\", tr( \"{1}\" ), {2}, {3} )".format(
|
||||
a['arg'],
|
||||
a.get('description', ''),
|
||||
"true" if a.get('descOnly', False) else "false",
|
||||
|
Loading…
x
Reference in New Issue
Block a user