Ignore:
Timestamp:
1 Mar 2012, 07:51:32 (13 years ago)
Author:
Henrik Bettermann
Message:

Finalize internationalization of py and pt files. Javascript is still missing.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/browser/pages.py

    r7714 r7738  
    11801180            not_copied = self.context.setStoragePath(newpath, move=move)
    11811181            for name in not_copied:
    1182                 self.flash(_('File already existed (not copied):') + ' %s' % name)
     1182                self.flash(_('File already existed (not copied): ${a}',
     1183                    mapping = {'a':name}))
    11831184        except:
    11841185            self.flash(_('Given storage path cannot be used.'))
    1185             self.flash(_('Error:') + '%s' %sys.exc_info()[1])
     1186            self.flash(_('Error: %s', mapping = {'a':sys.exc_info()[1]}))
    11861187            return
    11871188        if newpath:
Note: See TracChangeset for help on using the changeset viewer.