* src/plugins/MediaManager.py: Change info wording.

svn: r7202
This commit is contained in:
Alex Roitman 2006-08-18 06:04:54 +00:00
parent 7ed80c8743
commit de8ba4a19d
2 changed files with 10 additions and 6 deletions

View File

@ -1,4 +1,5 @@
2006-08-17 Alex Roitman <shura@gramps-project.org> 2006-08-17 Alex Roitman <shura@gramps-project.org>
* src/plugins/MediaManager.py: Change info wording.
* src/GrampsDb/_GrampsDbBase.py (GrampsDbBase._sortbyname): Remove * src/GrampsDb/_GrampsDbBase.py (GrampsDbBase._sortbyname): Remove
obsolete method. obsolete method.
* src/NameDisplay.py: Correct constants to accomodate Name change. * src/NameDisplay.py: Correct constants to accomodate Name change.

View File

@ -18,6 +18,8 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# #
# Written by Alex Roitman
# $Id$ # $Id$
"Media Manager tool" "Media Manager tool"
@ -97,7 +99,7 @@ class MediaMan(Tool.Tool):
def get_info_text(self): def get_info_text(self):
return _("This tool allows batch operations on media objects " return _("This tool allows batch operations on media objects "
"stored in GRAMPS, as well as on their files. " "stored in GRAMPS. "
"An important distinction must be made between a GRAMPS " "An important distinction must be made between a GRAMPS "
"media object and its file.\n\n" "media object and its file.\n\n"
"The GRAMPS media object is a collection of data about " "The GRAMPS media object is a collection of data about "
@ -105,14 +107,15 @@ class MediaMan(Tool.Tool):
"description, its ID, notes, source references, etc. " "description, its ID, notes, source references, etc. "
"These data <b>do not include the file itself</b>.\n\n" "These data <b>do not include the file itself</b>.\n\n"
"The files containing image, sound, video, etc, exists " "The files containing image, sound, video, etc, exists "
"separately on your hard drive. These files are normally " "separately on your hard drive. These files are "
"not managed by GRAMPS and are not included in the GRAMPS " "not managed by GRAMPS and are not included in the GRAMPS "
"database. " "database. "
"The GRAMPS database only stores the path and file names.\n\n" "The GRAMPS database only stores the path and file names.\n\n"
"This tool allows you to modify both the records within " "This tool allows you to only modify the records within "
"your GRAMPS database and the media object files that GRAMPS " "your GRAMPS database. If you want to move or rename "
"normaly does not manage. Please be careful in selecting " "the files then you need to do it on your own, outside of "
"your options, as you may potentially harm your files.") "GRAMPS. Then you can adjust the paths using this tool so "
"that the media objects store the correct file locations.")
def build_selection_page(self): def build_selection_page(self):
""" """