Merge pull request #273 from prculley/galxlt

Fix translation confusion on 'View' noun/verb
This commit is contained in:
romjerome 2016-11-16 08:53:07 +01:00 committed by GitHub
commit e0cb56ee93

View File

@ -60,7 +60,7 @@ from ...ddtargets import DdTargets
from .buttontab import ButtonTab from .buttontab import ButtonTab
from gramps.gen.const import THUMBSCALE from gramps.gen.const import THUMBSCALE
from gramps.gen.const import GRAMPS_LOCALE as glocale from gramps.gen.const import GRAMPS_LOCALE as glocale
_ = glocale.translation.gettext _ = glocale.translation.sgettext
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
# #
@ -136,7 +136,8 @@ class GalleryTab(ButtonTab, DbGUIElement):
ref_obj = self.dbstate.db.get_media_from_handle(obj.ref) ref_obj = self.dbstate.db.get_media_from_handle(obj.ref)
media_path = media_path_full(self.dbstate.db, ref_obj.get_path()) media_path = media_path_full(self.dbstate.db, ref_obj.get_path())
if media_path: if media_path:
item = Gtk.MenuItem.new_with_mnemonic(_('_View')) # Translators: _View means "to look at this"
item = Gtk.MenuItem.new_with_mnemonic(_('verb:look at this|_View'))
item.connect('activate', make_launcher(media_path, self.uistate)) item.connect('activate', make_launcher(media_path, self.uistate))
item.show() item.show()
self.menu.append(item) self.menu.append(item)