summaryrefslogtreecommitdiff
path: root/mat-gui
diff options
context:
space:
mode:
Diffstat (limited to 'mat-gui')
-rwxr-xr-xmat-gui6
1 files changed, 3 insertions, 3 deletions
diff --git a/mat-gui b/mat-gui
index de77a47..9f588bf 100755
--- a/mat-gui
+++ b/mat-gui
@@ -160,10 +160,10 @@ class GUI(object):
160 Popup that display on double-clic 160 Popup that display on double-clic
161 metadata from a file 161 metadata from a file
162 ''' 162 '''
163 label = '<b>%s</b>\'s metadatas:\n' % self.liststore[row][1] 163 label = _('<b>%s</b>\'s metadatas:\n') % self.liststore[row][1]
164 meta = '' 164 meta = ''
165 if not self.liststore[row][6] or self.liststore[row][0].file.is_clean(): 165 if not self.liststore[row][6] or self.liststore[row][0].file.is_clean():
166 meta = 'No metadata found' 166 meta = _('No metadata found')
167 self.liststore[row][4] = _('Clean') 167 self.liststore[row][4] = _('Clean')
168 else: 168 else:
169 self.liststore[row][4] = _('Dirty') 169 self.liststore[row][4] = _('Dirty')
@@ -380,7 +380,7 @@ non-anonymised) file to output archive'))
380 if mime: 380 if mime:
381 store.append([item, mime]) 381 store.append([item, mime])
382 else: 382 else:
383 store.append([item, 'unknown']) 383 store.append([item, _('unknown')])
384 384
385 treeview = Gtk.TreeView(store) 385 treeview = Gtk.TreeView(store)
386 vbox.pack_start(treeview, True, True, 0) 386 vbox.pack_start(treeview, True, True, 0)