Fixed an error in getting gettext to work and some cleanup too.
svn: r17271
This commit is contained in:
parent
665f991b36
commit
a2822d3fdf
@ -38,7 +38,6 @@ getcontext().prec = 4
|
|||||||
from fractions import Fraction
|
from fractions import Fraction
|
||||||
|
|
||||||
import subprocess
|
import subprocess
|
||||||
from gen.gettext import gettext as _
|
|
||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
# GTK modules
|
# GTK modules
|
||||||
@ -51,6 +50,8 @@ import gtk
|
|||||||
import GrampsDisplay
|
import GrampsDisplay
|
||||||
from QuestionDialog import OkDialog, WarningDialog, QuestionDialog
|
from QuestionDialog import OkDialog, WarningDialog, QuestionDialog
|
||||||
|
|
||||||
|
from gen.ggettext import gettext as _
|
||||||
|
|
||||||
from gen.plug import Gramplet
|
from gen.plug import Gramplet
|
||||||
from DateHandler import displayer as _dd
|
from DateHandler import displayer as _dd
|
||||||
|
|
||||||
@ -284,6 +285,8 @@ class EditExifMetadata(Gramplet):
|
|||||||
self.MediaDataTags = False
|
self.MediaDataTags = False
|
||||||
self.SavedEntries = False
|
self.SavedEntries = False
|
||||||
|
|
||||||
|
self.connect_signal("Media", self.update)
|
||||||
|
|
||||||
vbox = gtk.VBox()
|
vbox = gtk.VBox()
|
||||||
|
|
||||||
medialabel = gtk.HBox(False)
|
medialabel = gtk.HBox(False)
|
||||||
@ -560,7 +563,7 @@ class EditExifMetadata(Gramplet):
|
|||||||
def make_row(self, pos, text, choices=None, readonly=False, callback_list=[],
|
def make_row(self, pos, text, choices=None, readonly=False, callback_list=[],
|
||||||
mark_dirty=False, default=0):
|
mark_dirty=False, default=0):
|
||||||
|
|
||||||
# "Edit Image Exif Metadata" Gramplet
|
# Edit Image Exif Metadata
|
||||||
row = gtk.HBox()
|
row = gtk.HBox()
|
||||||
label = gtk.Label()
|
label = gtk.Label()
|
||||||
if readonly:
|
if readonly:
|
||||||
@ -629,7 +632,7 @@ class EditExifMetadata(Gramplet):
|
|||||||
"""
|
"""
|
||||||
gets the value from the Exif Key, and returns it...
|
gets the value from the Exif Key, and returns it...
|
||||||
|
|
||||||
@param: KeyTag -- Edit Image Exif Metadata key
|
@param: KeyTag -- image metadata key
|
||||||
"""
|
"""
|
||||||
|
|
||||||
KeyValue = ""
|
KeyValue = ""
|
||||||
@ -986,7 +989,7 @@ class EditExifMetadata(Gramplet):
|
|||||||
def save_metadata(self):
|
def save_metadata(self):
|
||||||
"""
|
"""
|
||||||
gets the information from the plugin data fields
|
gets the information from the plugin data fields
|
||||||
and sets the KeyTag = keyvalue
|
and sets the KeyTag = keyvalue image metadata
|
||||||
"""
|
"""
|
||||||
|
|
||||||
# Description data field
|
# Description data field
|
||||||
@ -1160,16 +1163,6 @@ class EditExifMetadata(Gramplet):
|
|||||||
# close this window
|
# close this window
|
||||||
self.app.destroy()
|
self.app.destroy()
|
||||||
|
|
||||||
#------------------------------------------------
|
|
||||||
# Database functions
|
|
||||||
#------------------------------------------------
|
|
||||||
def post_init(self):
|
|
||||||
self.connect_signal("Media", self.update)
|
|
||||||
|
|
||||||
def db_changed(self):
|
|
||||||
self.dbstate.db.connect('media-update', self.update)
|
|
||||||
self.update()
|
|
||||||
|
|
||||||
def string_to_rational(coordinate):
|
def string_to_rational(coordinate):
|
||||||
"""
|
"""
|
||||||
convert string to rational variable for GPS
|
convert string to rational variable for GPS
|
||||||
|
Loading…
Reference in New Issue
Block a user