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:
Benny Malengier 2008-01-06 10:25:36 +00:00
parent 18998c1913
commit aabef20651
2 changed files with 29 additions and 17 deletions

View File

@ -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>
* src/plugins/Verify.py: Removed unneccesary
* src/plugins/Verify.py: Removed unneccesary
print statement "print event.get_type()"
2008-01-06 Benny Malengier <benny.malengier@gramps-project.org>

View File

@ -459,22 +459,30 @@ class TODOGadget(Gadget):
self.save_text_to_data()
def make_welcome_content(gui):
text = _("""
Welcome to GRAMPS!
GRAMPS is a software package designed for genealogical research. Although similar to other genealogical programs, GRAMPS offers some unique and powerful features.
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.
Getting Started
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.
You are currently reading from the "My Gramps" page, where you can add your own gadgets.
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.
""")
text = _(
'Welcome to GRAMPS!\n\n'
'GRAMPS is a software package designed for genealogical research.'
' 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.\n\n'
'Getting Started\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.\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)