diff --git a/openlp/core/common/uistrings.py b/openlp/core/common/uistrings.py index 6b952cc39..643df0808 100644 --- a/openlp/core/common/uistrings.py +++ b/openlp/core/common/uistrings.py @@ -67,6 +67,7 @@ class UiStrings(object): self.Browse = translate('OpenLP.Ui', 'Browse...') self.Cancel = translate('OpenLP.Ui', 'Cancel') self.CCLINumberLabel = translate('OpenLP.Ui', 'CCLI number:') + self.CCLISongNumberLabel = translate('OpenLP.Ui', 'CCLI song number:') self.CreateService = translate('OpenLP.Ui', 'Create a new service.') self.ConfirmDelete = translate('OpenLP.Ui', 'Confirm Delete') self.Continuous = translate('OpenLP.Ui', 'Continuous') diff --git a/openlp/plugins/songs/forms/editsongdialog.py b/openlp/plugins/songs/forms/editsongdialog.py index cdbac7fdb..d20b723e4 100644 --- a/openlp/plugins/songs/forms/editsongdialog.py +++ b/openlp/plugins/songs/forms/editsongdialog.py @@ -323,7 +323,7 @@ class Ui_EditSongDialog(object): self.theme_add_button.setText(translate('SongsPlugin.EditSongForm', 'New &Theme')) self.rights_group_box.setTitle(translate('SongsPlugin.EditSongForm', 'Copyright Information')) self.copyright_insert_button.setText(SongStrings.CopyrightSymbol) - self.ccli_label.setText(UiStrings().CCLINumberLabel) + self.ccli_label.setText(UiStrings().CCLISongNumberLabel) self.comments_group_box.setTitle(translate('SongsPlugin.EditSongForm', 'Comments')) self.song_tab_widget.setTabText(self.song_tab_widget.indexOf(self.theme_tab), translate('SongsPlugin.EditSongForm', 'Theme, Copyright Info && Comments'))