As discussed on the gramps-devel:
"home directory" / "user directory" -> "user's directory" svn: r10577
This commit is contained in:
parent
fcc2aecea5
commit
e910a131a9
@ -283,7 +283,7 @@ class ImportInfo:
|
|||||||
txt += _("\nMedia objects with relative paths have been\n"
|
txt += _("\nMedia objects with relative paths have been\n"
|
||||||
"imported. These paths are considered relative to\n"
|
"imported. These paths are considered relative to\n"
|
||||||
"the media directory you can set in the preferences,\n"
|
"the media directory you can set in the preferences,\n"
|
||||||
"or, if not set, relative to the user directory.\n"
|
"or, if not set, relative to the user's directory.\n"
|
||||||
)
|
)
|
||||||
return txt
|
return txt
|
||||||
|
|
||||||
|
@ -484,10 +484,10 @@ class PathChange(BatchOp):
|
|||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
class Convert2Abs(BatchOp):
|
class Convert2Abs(BatchOp):
|
||||||
title = _('Convert paths from relative to _absolute')
|
title = _('Convert paths from relative to _absolute')
|
||||||
description = _('This tool allows converting relative media paths '
|
description = _("This tool allows converting relative media paths "
|
||||||
'to the absolute ones. It does this by prepending '
|
"to the absolute ones. It does this by prepending "
|
||||||
'the base path as given in the Preferences, or if '
|
"the base path as given in the Preferences, or if "
|
||||||
'that is not set, it prepends your home directory.')
|
"that is not set, it prepends user's directory.")
|
||||||
|
|
||||||
def _prepare(self):
|
def _prepare(self):
|
||||||
cursor = self.db.get_media_cursor()
|
cursor = self.db.get_media_cursor()
|
||||||
@ -522,12 +522,12 @@ class Convert2Abs(BatchOp):
|
|||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
class Convert2Rel(BatchOp):
|
class Convert2Rel(BatchOp):
|
||||||
title = _('Convert paths from absolute to r_elative')
|
title = _('Convert paths from absolute to r_elative')
|
||||||
description = _('This tool allows converting absolute media paths '
|
description = _("This tool allows converting absolute media paths "
|
||||||
'to the a relative path. The relative path is relative '
|
"to the a relative path. The relative path is relative "
|
||||||
'viz-a-viz the base path as given in the Preferences, '
|
"viz-a-viz the base path as given in the Preferences, "
|
||||||
'or if that is not set, your home directory. '
|
"or if that is not set, user's directory. "
|
||||||
'A relative path allows to tie the file location to a '
|
"A relative path allows to tie the file location to "
|
||||||
'base path that can change to your needs.')
|
"a base path that can change to your needs.")
|
||||||
|
|
||||||
def _prepare(self):
|
def _prepare(self):
|
||||||
cursor = self.db.get_media_cursor()
|
cursor = self.db.get_media_cursor()
|
||||||
|
Loading…
Reference in New Issue
Block a user