forked from openlp/openlp
Make strings used in UI translatable
This commit is contained in:
parent
6504397662
commit
20085d0a6c
@ -150,7 +150,8 @@ class EasyWorshipSongImport(SongImport):
|
|||||||
title = self.get_field(fi_title)
|
title = self.get_field(fi_title)
|
||||||
if title:
|
if title:
|
||||||
self.import_wizard.incrementProgressBar(
|
self.import_wizard.incrementProgressBar(
|
||||||
u'Importing "%s"...' % title, 0)
|
unicode(translate('SongsPlugin.ImportWizardForm',
|
||||||
|
'Importing "%s"...')) % title, 0)
|
||||||
self.title = title
|
self.title = title
|
||||||
# Get remaining fields
|
# Get remaining fields
|
||||||
copy = self.get_field(fi_copy)
|
copy = self.get_field(fi_copy)
|
||||||
@ -164,7 +165,9 @@ class EasyWorshipSongImport(SongImport):
|
|||||||
if admin:
|
if admin:
|
||||||
if copy:
|
if copy:
|
||||||
self.copyright += u', '
|
self.copyright += u', '
|
||||||
self.copyright += u'Administered by ' + admin
|
self.copyright += \
|
||||||
|
unicode(translate('SongsPlugin.ImportWizardForm',
|
||||||
|
'Administered by %s')) % admin
|
||||||
if ccli:
|
if ccli:
|
||||||
self.ccli_number = ccli
|
self.ccli_number = ccli
|
||||||
if authors:
|
if authors:
|
||||||
|
Loading…
Reference in New Issue
Block a user