2008-01-06 Benny Malengier <benny.malengier@gramps-project.org>
* src/plugins/DefaultGadgets.py: handle long text in standard way for translation svn: r9720
This commit is contained in:
parent
18998c1913
commit
aabef20651
@ -1,5 +1,9 @@
|
|||||||
|
2008-01-06 Benny Malengier <benny.malengier@gramps-project.org>
|
||||||
|
* src/plugins/DefaultGadgets.py: handle long text in standard way for
|
||||||
|
translation
|
||||||
|
|
||||||
2008-01-06 Peter Landgren <peter.talken2telia.com>
|
2008-01-06 Peter Landgren <peter.talken2telia.com>
|
||||||
* src/plugins/Verify.py: Removed unneccesary
|
* src/plugins/Verify.py: Removed unneccesary
|
||||||
print statement "print event.get_type()"
|
print statement "print event.get_type()"
|
||||||
|
|
||||||
2008-01-06 Benny Malengier <benny.malengier@gramps-project.org>
|
2008-01-06 Benny Malengier <benny.malengier@gramps-project.org>
|
||||||
|
@ -459,22 +459,30 @@ class TODOGadget(Gadget):
|
|||||||
self.save_text_to_data()
|
self.save_text_to_data()
|
||||||
|
|
||||||
def make_welcome_content(gui):
|
def make_welcome_content(gui):
|
||||||
text = _("""
|
text = _(
|
||||||
Welcome to GRAMPS!
|
'Welcome to GRAMPS!\n\n'
|
||||||
|
'GRAMPS is a software package designed for genealogical research.'
|
||||||
GRAMPS is a software package designed for genealogical research. Although similar to other genealogical programs, GRAMPS offers some unique and powerful features.
|
' Although similar to other genealogical programs, GRAMPS offers '
|
||||||
|
'some unique and powerful features.\n\n'
|
||||||
GRAMPS is an Open Source Software package, which means you are free to make copies and distribute it to anyone you like. It's developed and maintained by a worldwide team of volunteers whose goal is to make GRAMPS powerful, yet easy to use.
|
'GRAMPS is an Open Source Software package, which means you are '
|
||||||
|
'free to make copies and distribute it to anyone you like. It\'s '
|
||||||
Getting Started
|
'developed and maintained by a worldwide team of volunteers whose'
|
||||||
|
' goal is to make GRAMPS powerful, yet easy to use.\n\n'
|
||||||
The first thing you must do is to create a new Family Tree. To create a new Family Tree (sometimes called a database) select "Family Trees" from the menu, pick "Manage Family Trees", press "New" and name your database. For more details, please read the User Manual, or the on-line manual at http://gramps-project.org.
|
'Getting Started\n\n'
|
||||||
|
'The first thing you must do is to create a new Family Tree. To '
|
||||||
You are currently reading from the "My Gramps" page, where you can add your own gadgets.
|
'create a new Family Tree (sometimes called a database) select '
|
||||||
|
'"Family Trees" from the menu, pick "Manage Family Trees", press '
|
||||||
You can right-click on the background of this page to add additional gadgets and change the number of columns. You can also drag the Properties button to reposition the gadget on this page, and detach the gadget to float above GRAMPS. If you close GRAMPS with a gadget detached, it will re-opened detached the next time you start GRAMPS.
|
'"New" and name your database. For more details, please read the '
|
||||||
|
'User Manual, or the on-line manual at http://gramps-project.org.\n\n'
|
||||||
""")
|
'You are currently reading from the "My Gramps" page, where you can'
|
||||||
|
' add your own gadgets.\n\n'
|
||||||
|
'You can right-click on the background of this page to add additional'
|
||||||
|
' gadgets and change the number of columns. You can also drag the '
|
||||||
|
'Properties button to reposition the gadget on this page, and detach'
|
||||||
|
' the gadget to float above GRAMPS. If you close GRAMPS with a gadget'
|
||||||
|
' detached, it will re-opened detached the next time you start '
|
||||||
|
'GRAMPS.'
|
||||||
|
)
|
||||||
gui.set_text(text)
|
gui.set_text(text)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user