Open main menu

Gramps β

Changes

User:Sam888

953 bytes removed, 23:25, 26 October 2025
Notes on User manual update: looks to be resolved
eg: from Source's attribute tab creating a new attribute.
........................................................
[ ] Some addons when building have the following warning:
 
Listed: Graph View
GraphView/graphview.py:2383: warning: 'msgid' format string with unnamed arguments cannot be properly localized:
The translator cannot reorder the arguments.
Please consider using a format string with named arguments,
and a mapping instead of a tuple for the arguments.
 
For solution see:
https://stackoverflow.com/questions/23405521/why-i-get-msgid-format-string-unnamed-arguments-warning-only-when-running-m
 
Which essentially say "To solve the problem, simply use named arguments"
 
my_string = "Hello %(person)s, it is %(time)s o'clock." % ({
'person':'Foo',
'time':'two'
})
 
translated_string = "It is %(time)s o'clock, Mr. %(person)s" % ({
'person':'Foo',
'time':'two'
})
...................................................................
</pre>
15,091
edits