Changeset 194

Show
Ignore:
Timestamp:
Sat Nov 24 09:14:22 2007
Author:
manatlan
Message:

- a viewExif plugin new bug was corrected (rob)
- italian translations for viewEcif Plugin (thx to igor neri)
- a jbrout.png is available in /gfx (rob)

Files:

Legend:

Unmodified
Added
Removed
Modified
  • trunk/plugins/viewExif/viewExif.py

    r192 r194  
    88 88             for tag in sortedTags:  
    89 89                 if re.match(self.ignoredTags, tag) == None:  
    90                       self.exifList.append([tag, tags[tag]])  
      90                     try:  
      91                         self.exifList.append([tag, tags[tag]])  
      92                     except:  
      93                         pass  
    91 94             if len(self.exifList)==0:  
    92 95                 self.exifList.append([_('No Displayable EXIF Tags found in file!'), ''])  
  • trunk/plugins/multiexport/__init__.py

    r193 r194  
    235 235                         album=picasa.createAlbum("Jbrout " + time.strftime("%Y-%m-%d, %H-%M-%S"),public=(ec["PW.privacy"]==0))  
    236 236                     else:  
    237                           raise PicasaException(_("Sorry, you can't upload to picasewab (python import error)"))  
      237                         raise PicasaException(_("Sorry, you can't upload to picasaweb (python import error)"))  
    237 237                 except Exception,err:  
    238 238                     self.MessageBox(_("Upload error : ")+str(err))