From 651ee535f6fa386b5e2112e2264b7553900cb3cb Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Fri, 23 Jul 2010 21:17:36 +0200 Subject: [PATCH] Hopefully the last of the string fixes. --- openlp/core/ui/splashscreen.py | 13 - openlp/core/ui/thememanager.py | 137 +-- openlp/core/ui/themestab.py | 22 +- openlp/plugins/songs/forms/editsongdialog.py | 6 +- openlp/plugins/songs/lib/__init__.py | 14 +- openlp/plugins/songs/lib/mediaitem.py | 20 +- openlp/plugins/songs/lib/songstab.py | 2 +- resources/i18n/openlp_af.ts | 812 +++++++++--------- resources/i18n/openlp_de.ts | 826 +++++++++---------- resources/i18n/openlp_en.ts | 798 +++++++++--------- resources/i18n/openlp_en_GB.ts | 812 +++++++++--------- resources/i18n/openlp_en_ZA.ts | 818 +++++++++--------- resources/i18n/openlp_es.ts | 812 +++++++++--------- resources/i18n/openlp_et.ts | 770 +++++++++-------- resources/i18n/openlp_hu.ts | 812 +++++++++--------- resources/i18n/openlp_ko.ts | 798 +++++++++--------- resources/i18n/openlp_nb.ts | 800 +++++++++--------- resources/i18n/openlp_pt_BR.ts | 812 +++++++++--------- resources/i18n/openlp_sv.ts | 816 +++++++++--------- 19 files changed, 4905 insertions(+), 4995 deletions(-) diff --git a/openlp/core/ui/splashscreen.py b/openlp/core/ui/splashscreen.py index ff2be94df..bd87bcb12 100644 --- a/openlp/core/ui/splashscreen.py +++ b/openlp/core/ui/splashscreen.py @@ -31,9 +31,6 @@ class SplashScreen(object): def __init__(self, version): self.splash_screen = QtGui.QSplashScreen() self.setupUi() - self.message = translate( - 'Splashscreen', 'Starting')\ - + '..... ' + version def setupUi(self): self.splash_screen.setObjectName(u'splash_screen') @@ -48,25 +45,15 @@ class SplashScreen(object): self.splash_screen.sizePolicy().hasHeightForWidth()) self.splash_screen.setSizePolicy(sizePolicy) self.splash_screen.setContextMenuPolicy(QtCore.Qt.PreventContextMenu) - icon = build_icon(u':/icon/openlp-logo-16x16.png') - self.splash_screen.setWindowIcon(icon) splash_image = QtGui.QPixmap(u':/graphics/openlp-splash-screen.png') self.splash_screen.setPixmap(splash_image) self.splash_screen.setMask(splash_image.mask()) self.splash_screen.setWindowFlags( QtCore.Qt.SplashScreen | QtCore.Qt.WindowStaysOnTopHint) - self.retranslateUi() QtCore.QMetaObject.connectSlotsByName(self.splash_screen) - def retranslateUi(self): - self.splash_screen.setWindowTitle( - translate('Splashscreen', 'Splash Screen')) - def show(self): self.splash_screen.show() - self.splash_screen.showMessage(self.message, - QtCore.Qt.AlignLeft | QtCore.Qt.AlignBottom, QtCore.Qt.black) - self.splash_screen.repaint() def finish(self, widget): self.splash_screen.finish(widget) diff --git a/openlp/core/ui/thememanager.py b/openlp/core/ui/thememanager.py index 1745e6030..9f1067baa 100644 --- a/openlp/core/ui/thememanager.py +++ b/openlp/core/ui/thememanager.py @@ -55,25 +55,31 @@ class ThemeManager(QtGui.QWidget): self.amendThemeForm = AmendThemeForm(self) self.Toolbar = OpenLPToolbar(self) self.Toolbar.addToolbarButton( - translate('ThemeManager', 'New Theme'), u':/themes/theme_new.png', - translate('ThemeManager', 'Create a new theme.'), self.onAddTheme) + translate('OpenLP.ThemeManager', 'New Theme'), + u':/themes/theme_new.png', + translate('OpenLP.ThemeManager', 'Create a new theme.'), + self.onAddTheme) self.Toolbar.addToolbarButton( - translate('ThemeManager', 'Edit Theme'), + translate('OpenLP.ThemeManager', 'Edit Theme'), u':/themes/theme_edit.png', - translate('ThemeManager', 'Edit a theme.'), self.onEditTheme) + translate('OpenLP.ThemeManager', 'Edit a theme.'), + self.onEditTheme) self.Toolbar.addToolbarButton( - translate('ThemeManager', 'Delete Theme'), + translate('OpenLP.ThemeManager', 'Delete Theme'), u':/general/general_delete.png', - translate('ThemeManager', 'Delete a theme.'), self.onDeleteTheme) + translate('OpenLP.ThemeManager', 'Delete a theme.'), + self.onDeleteTheme) self.Toolbar.addSeparator() self.Toolbar.addToolbarButton( - translate('ThemeManager', 'Import Theme'), + translate('OpenLP.ThemeManager', 'Import Theme'), u':/general/general_import.png', - translate('ThemeManager', 'Import a theme.'), self.onImportTheme) + translate('OpenLP.ThemeManager', 'Import a theme.'), + self.onImportTheme) self.Toolbar.addToolbarButton( - translate('ThemeManager', 'Export Theme'), + translate('OpenLP.ThemeManager', 'Export Theme'), u':/general/general_export.png', - translate('ThemeManager', 'Export a theme.'), self.onExportTheme) + translate('OpenLP.ThemeManager', 'Export a theme.'), + self.onExportTheme) self.ThemeWidget = QtGui.QWidgetAction(self.Toolbar) self.Layout.addWidget(self.Toolbar) self.ThemeListWidget = QtGui.QListWidget(self) @@ -84,23 +90,24 @@ class ThemeManager(QtGui.QWidget): self.ThemeListWidget.addAction( context_menu_action(self.ThemeListWidget, u':/themes/theme_edit.png', - translate('ThemeManager', '&Edit Theme'), self.onEditTheme)) + translate('OpenLP.ThemeManager', '&Edit Theme'), + self.onEditTheme)) self.ThemeListWidget.addAction( context_menu_separator(self.ThemeListWidget)) self.ThemeListWidget.addAction( context_menu_action(self.ThemeListWidget, u':/general/general_delete.png', - translate('ThemeManager', '&Delete Theme'), + translate('OpenLP.ThemeManager', '&Delete Theme'), self.onDeleteTheme)) self.ThemeListWidget.addAction( context_menu_action(self.ThemeListWidget, u':/general/general_export.png', - translate('ThemeManager', 'Set As &Global Default'), + translate('OpenLP.ThemeManager', 'Set As &Global Default'), self.changeGlobalFromScreen)) self.ThemeListWidget.addAction( context_menu_action(self.ThemeListWidget, u':/general/general_export.png', - translate('ThemeManager', 'E&xport Theme'), + translate('OpenLP.ThemeManager', 'E&xport Theme'), self.onExportTheme)) self.ThemeListWidget.addAction( context_menu_separator(self.ThemeListWidget)) @@ -139,8 +146,8 @@ class ThemeManager(QtGui.QWidget): self.ThemeListWidget.item(count).setText(newName) #Set the new name if themeName == newName: - name = unicode(translate('ThemeManager', '%s (default)')) % \ - newName + name = unicode(translate('OpenLP.ThemeManager', + '%s (default)')) % newName self.ThemeListWidget.item(count).setText(name) def changeGlobalFromScreen(self, index = -1): @@ -161,13 +168,14 @@ class ThemeManager(QtGui.QWidget): if count == selected_row: self.global_theme = unicode( self.ThemeListWidget.item(count).text()) - name = unicode(translate('ThemeManager', '%s (default)')) % \ - self.global_theme + name = unicode(translate('OpenLP.ThemeManager', + '%s (default)')) % self.global_theme self.ThemeListWidget.item(count).setText(name) QtCore.QSettings().setValue( self.settingsSection + u'/global theme', QtCore.QVariant(self.global_theme)) - Receiver.send_message(u'theme_update_global', self.global_theme) + Receiver.send_message(u'theme_update_global', + self.global_theme) self.pushThemes() def onAddTheme(self): @@ -185,7 +193,8 @@ class ThemeManager(QtGui.QWidget): Loads the settings for the theme that is to be edited and launches the theme editing form so the user can make their changes. """ - if check_item_selected(self.ThemeListWidget, translate('ThemeManager', + if check_item_selected(self.ThemeListWidget, + translate('OpenLP.ThemeManager', 'You must select a theme to edit.')): item = self.ThemeListWidget.currentItem() themeName = unicode(item.text()) @@ -207,14 +216,15 @@ class ThemeManager(QtGui.QWidget): self.global_theme = unicode(QtCore.QSettings().value( self.settingsSection + u'/global theme', QtCore.QVariant(u'')).toString()) - if check_item_selected(self.ThemeListWidget, translate('ThemeManager', + if check_item_selected(self.ThemeListWidget, + translate('OpenLP.ThemeManager', 'You must select a theme to delete.')): item = self.ThemeListWidget.currentItem() theme = unicode(item.text()) # confirm deletion answer = QtGui.QMessageBox.question(self, - translate('ThemeManager', 'Delete Confirmation'), - translate('ThemeManager', 'Delete theme?'), + translate('OpenLP.ThemeManager', 'Delete Confirmation'), + translate('OpenLP.ThemeManager', 'Delete theme?'), QtGui.QMessageBox.StandardButtons(QtGui.QMessageBox.Yes | QtGui.QMessageBox.No), QtGui.QMessageBox.No) if answer == QtGui.QMessageBox.No: @@ -222,24 +232,24 @@ class ThemeManager(QtGui.QWidget): # should be the same unless default if theme != unicode(item.data(QtCore.Qt.UserRole).toString()): QtGui.QMessageBox.critical(self, - translate('ThemeManager', 'Error'), - translate('ThemeManager', + translate('OpenLP.ThemeManager', 'Error'), + translate('OpenLP.ThemeManager', 'You are unable to delete the default theme.'), QtGui.QMessageBox.StandardButtons(QtGui.QMessageBox.Ok)) else: for plugin in self.parent.plugin_manager.plugins: if plugin.usesTheme(theme): QtGui.QMessageBox.critical(self, - translate('ThemeManager', 'Error'), - unicode(translate('ThemeManager', + translate('OpenLP.ThemeManager', 'Error'), + unicode(translate('OpenLP.ThemeManager', 'Theme %s is use in %s plugin.')) % \ (theme, plugin.name)) return if unicode(self.serviceComboBox.currentText()) == theme: QtGui.QMessageBox.critical(self, - translate('ThemeManager', 'Error'), - unicode(translate('ThemeManager', - 'Theme %s is use by the service manager.')) % theme) + translate('OpenLP.ThemeManager', 'Error'), + unicode(translate('OpenLP.ThemeManager', + 'Theme %s is use by the service manager.')) % theme) return row = self.ThemeListWidget.row(item) self.ThemeListWidget.takeItem(row) @@ -273,12 +283,14 @@ class ThemeManager(QtGui.QWidget): item = self.ThemeListWidget.currentItem() if item is None: QtGui.QMessageBox.critical(self, - translate('ThemeManager', 'Error'), - translate('ThemeManager', 'You have not selected a theme.')) + translate('OpenLP.ThemeManager', 'Error'), + translate('OpenLP.ThemeManager', + 'You have not selected a theme.')) return theme = unicode(item.data(QtCore.Qt.UserRole).toString()) path = QtGui.QFileDialog.getExistingDirectory(self, - unicode(translate('ThemeManager', 'Save Theme - (%s)')) % theme, + unicode(translate('OpenLP.ThemeManager', + 'Save Theme - (%s)')) % theme, SettingsManager.get_last_dir(self.settingsSection, 1)) path = unicode(path) if path: @@ -294,14 +306,14 @@ class ThemeManager(QtGui.QWidget): os.path.join(source, name).encode(u'utf-8'), os.path.join(theme, name).encode(u'utf-8')) QtGui.QMessageBox.information(self, - translate('ThemeManager', 'Theme Exported'), - translate('ThemeManager', + translate('OpenLP.ThemeManager', 'Theme Exported'), + translate('OpenLP.ThemeManager', 'Your theme has been successfully exported.')) except (IOError, OSError): log.exception(u'Export Theme Failed') QtGui.QMessageBox.critical(self, - translate('ThemeManager', 'Theme Export Failed'), - translate('ThemeManager', + translate('OpenLP.ThemeManager', 'Theme Export Failed'), + translate('OpenLP.ThemeManager', 'Your theme could not be exported due to an error.')) finally: if zip: @@ -314,9 +326,9 @@ class ThemeManager(QtGui.QWidget): will load both OpenLP version 1 and version 2 themes. """ files = QtGui.QFileDialog.getOpenFileNames(self, - translate('ThemeManager', 'Select Theme Import File'), + translate('OpenLP.ThemeManager', 'Select Theme Import File'), SettingsManager.get_last_dir(self.settingsSection), - translate('ThemeManager', 'Theme (*.*)')) + translate('OpenLP.ThemeManager', 'Theme (*.*)')) log.info(u'New Themes %s', unicode(files)) if files: for file in files: @@ -343,7 +355,7 @@ class ThemeManager(QtGui.QWidget): if os.path.exists(theme): textName = os.path.splitext(name)[0] if textName == self.global_theme: - name = unicode(translate('ThemeManager', + name = unicode(translate('OpenLP.ThemeManager', '%s (default)')) % textName else: name = textName @@ -419,8 +431,9 @@ class ThemeManager(QtGui.QWidget): ucsfile = file.decode(u'utf-8') except UnicodeDecodeError: QtGui.QMessageBox.critical( - self, translate('ThemeManager', 'Error'), - translate('ThemeManager', 'File is not a valid theme.\n' + self, translate('OpenLP.ThemeManager', 'Error'), + translate('OpenLP.ThemeManager', + 'File is not a valid theme.\n' 'The content encoding is not UTF-8.')) log.exception(u'Filename "%s" is not valid UTF-8' % file.decode(u'utf-8', u'replace')) @@ -464,15 +477,16 @@ class ThemeManager(QtGui.QWidget): self.generateAndSaveImage(dir, themename, filexml) else: QtGui.QMessageBox.critical(self, - translate('ThemeManager', 'Error'), - translate('ThemeManager', 'File is not a valid theme.')) - log.exception(u'Theme file dosen\'t contain XML data %s' % + translate('OpenLP.ThemeManager', 'Error'), + translate('OpenLP.ThemeManager', + 'File is not a valid theme.')) + log.exception(u'Theme file does not contain XML data %s' % filename) except (IOError, NameError): QtGui.QMessageBox.critical(self, - translate('ThemeManager', 'Error'), - translate('ThemeManager', 'File is not a valid theme.')) - log.exception(u'Importing theme from zip file failed %s' % filename) + translate('OpenLP.ThemeManager', 'Error'), + translate('OpenLP.ThemeManager', 'File is not a valid theme.')) + log.exception(u'Importing theme from zip failed %s' % filename) finally: if zip: zip.close() @@ -536,7 +550,8 @@ class ThemeManager(QtGui.QWidget): vAlignCorrection = 1 elif theme.VerticalAlign == 1: vAlignCorrection = 2 - newtheme.add_display(unicode(shadow), unicode(theme.ShadowColor.name()), + newtheme.add_display(unicode(shadow), + unicode(theme.ShadowColor.name()), unicode(outline), unicode(theme.OutlineColor.name()), unicode(theme.HorizontalAlign), unicode(vAlignCorrection), unicode(theme.WrapStyle), unicode(0)) @@ -559,8 +574,9 @@ class ThemeManager(QtGui.QWidget): if self.saveThemeName != name: if os.path.exists(theme_file): result = QtGui.QMessageBox.question(self, - translate('ThemeManager', 'Theme Exists'), - translate('ThemeManager', 'A theme with this name already ' + translate('OpenLP.ThemeManager', 'Theme Exists'), + translate('OpenLP.ThemeManager', + 'A theme with this name already ' 'exists. Would you like to overwrite it?'), (QtGui.QMessageBox.Yes | QtGui.QMessageBox.No), QtGui.QMessageBox.No) @@ -611,7 +627,7 @@ class ThemeManager(QtGui.QWidget): newThemeItem).row() self.global_theme = unicode( self.ThemeListWidget.item(newThemeIndex).text()) - newName = unicode(translate('ThemeManager', + newName = unicode(translate('OpenLP.ThemeManager', '%s (default)')) % self.global_theme self.ThemeListWidget.item(newThemeIndex).setText(newName) QtCore.QSettings().setValue( @@ -665,14 +681,15 @@ class ThemeManager(QtGui.QWidget): """ log.debug(u'base theme created') newtheme = ThemeXML() - newtheme.new_document(unicode(translate('ThemeManager', 'New Theme'))) - newtheme.add_background_solid(unicode(u'#000000')) - newtheme.add_font(unicode(QtGui.QFont().family()), unicode(u'#FFFFFF'), - unicode(30), u'False') - newtheme.add_font(unicode(QtGui.QFont().family()), unicode(u'#FFFFFF'), - unicode(12), u'False', u'footer') - newtheme.add_display(u'False', unicode(u'#FFFFFF'), u'False', - unicode(u'#FFFFFF'), unicode(0), unicode(0), unicode(0), u'False') + newtheme.new_document( + unicode(translate('OpenLP.ThemeManager', 'New Theme'))) + newtheme.add_background_solid(u'#000000') + newtheme.add_font(unicode(QtGui.QFont().family()), u'#FFFFFF', + u'30', u'False') + newtheme.add_font(unicode(QtGui.QFont().family()), u'#FFFFFF', + u'12', u'False', u'footer') + newtheme.add_display(u'False', u'#FFFFFF', u'False', + unicode(u'#FFFFFF'), u'0', u'0', u'0', u'False') return newtheme.extract_xml() def createThemeFromXml(self, theme_xml, path): diff --git a/openlp/core/ui/themestab.py b/openlp/core/ui/themestab.py index 007a51fd6..7643525af 100644 --- a/openlp/core/ui/themestab.py +++ b/openlp/core/ui/themestab.py @@ -37,7 +37,7 @@ class ThemesTab(SettingsTab): def setupUi(self): self.setObjectName(u'ThemesTab') - self.tabTitleVisible = translate('ThemesTab', 'Themes') + self.tabTitleVisible = translate('OpenLP.ThemesTab', 'Themes') self.ThemesTabLayout = QtGui.QHBoxLayout(self) self.ThemesTabLayout.setSpacing(8) self.ThemesTabLayout.setMargin(8) @@ -106,26 +106,28 @@ class ThemesTab(SettingsTab): QtCore.SIGNAL(u'theme_update_list'), self.updateThemeList) def retranslateUi(self): - self.GlobalGroupBox.setTitle(translate('ThemesTab', 'Global Theme')) - self.LevelGroupBox.setTitle(translate('ThemesTab', 'Theme Level')) + self.GlobalGroupBox.setTitle( + translate('OpenLP.ThemesTab', 'Global Theme')) + self.LevelGroupBox.setTitle( + translate('OpenLP.ThemesTab', 'Theme Level')) self.SongLevelRadioButton.setText( - translate('ThemesTab', 'S&ong Level')) + translate('OpenLP.ThemesTab', 'S&ong Level')) self.SongLevelLabel.setText( - translate('ThemesTab', 'Use the theme from each song ' + translate('OpenLP.ThemesTab', 'Use the theme from each song ' 'in the database. If a song doesn\'t have a theme associated with ' 'it, then use the service\'s theme. If the service doesn\'t have ' 'a theme, then use the global theme.')) self.ServiceLevelRadioButton.setText( - translate('ThemesTab', '&Service Level')) + translate('OpenLP.ThemesTab', '&Service Level')) self.ServiceLevelLabel.setText( - translate('ThemesTab', 'Use the theme from the service, ' + translate('OpenLP.ThemesTab', 'Use the theme from the service, ' 'overriding any of the individual songs\' themes. If the ' 'service doesn\'t have a theme, then use the global theme.')) self.GlobalLevelRadioButton.setText( - translate('ThemesTab', '&Global Level')) + translate('OpenLP.ThemesTab', '&Global Level')) self.GlobalLevelLabel.setText( - translate('ThemesTab', 'Use the global theme, overriding any ' - 'themes associated with either the service or the songs.')) + translate('OpenLP.ThemesTab', 'Use the global theme, overriding ' + 'any themes associated with either the service or the songs.')) def load(self): settings = QtCore.QSettings() diff --git a/openlp/plugins/songs/forms/editsongdialog.py b/openlp/plugins/songs/forms/editsongdialog.py index dccc6d6ba..e89433fe5 100644 --- a/openlp/plugins/songs/forms/editsongdialog.py +++ b/openlp/plugins/songs/forms/editsongdialog.py @@ -407,11 +407,11 @@ class Ui_EditSongDialog(object): self.TitleLabel.setText( translate('SongsPlugin.EditSongForm', '&Title:')) self.AlternativeTitleLabel.setText( - translate('SongsPlugin.EditSongForm', 'Alt&ernate Title:')) + translate('SongsPlugin.EditSongForm', 'Alt&ernate title:')) self.LyricsLabel.setText( translate('SongsPlugin.EditSongForm', '&Lyrics:')) self.VerseOrderLabel.setText( - translate('SongsPlugin.EditSongForm', '&Verse Order:')) + translate('SongsPlugin.EditSongForm', '&Verse order:')) self.VerseAddButton.setText( translate('SongsPlugin.EditSongForm', '&Add')) self.VerseEditButton.setText( @@ -452,7 +452,7 @@ class Ui_EditSongDialog(object): self.CopyrightInsertButton.setText( translate('SongsPlugin.EditSongForm', '\xa9')) self.CCLILabel.setText( - translate('SongsPlugin.EditSongForm', 'CCLI Number:')) + translate('SongsPlugin.EditSongForm', 'CCLI number:')) self.CommentsGroupBox.setTitle( translate('SongsPlugin.EditSongForm', 'Comments')) self.SongTabWidget.setTabText( diff --git a/openlp/plugins/songs/lib/__init__.py b/openlp/plugins/songs/lib/__init__.py index 0e2b93bd6..9a5e92bcc 100644 --- a/openlp/plugins/songs/lib/__init__.py +++ b/openlp/plugins/songs/lib/__init__.py @@ -93,19 +93,19 @@ class VerseType(object): The type to return a string for """ if verse_type == VerseType.Verse: - return translate('VerseType', 'Verse') + return translate('SongsPlugin.VerseType', 'Verse') elif verse_type == VerseType.Chorus: - return translate('VerseType', 'Chorus') + return translate('SongsPlugin.VerseType', 'Chorus') elif verse_type == VerseType.Bridge: - return translate('VerseType', 'Bridge') + return translate('SongsPlugin.VerseType', 'Bridge') elif verse_type == VerseType.PreChorus: - return translate('VerseType', 'Pre-Chorus') + return translate('SongsPlugin.VerseType', 'Pre-Chorus') elif verse_type == VerseType.Intro: - return translate('VerseType', 'Intro') + return translate('SongsPlugin.VerseType', 'Intro') elif verse_type == VerseType.Ending: - return translate('VerseType', 'Ending') + return translate('SongsPlugin.VerseType', 'Ending') elif verse_type == VerseType.Other: - return translate('VerseType', 'Other') + return translate('SongsPlugin.VerseType', 'Other') @staticmethod def from_string(verse_type): diff --git a/openlp/plugins/songs/lib/mediaitem.py b/openlp/plugins/songs/lib/mediaitem.py index 0b9ef789d..28677e3b6 100644 --- a/openlp/plugins/songs/lib/mediaitem.py +++ b/openlp/plugins/songs/lib/mediaitem.py @@ -209,9 +209,7 @@ class SongMediaItem(MediaManagerItem): self.listView.clear() for author in searchresults: for song in author.songs: - song_detail = unicode( - translate('SongsPlugin.MediaItem', '%s (%s)')) % \ - (author.display_name, song.title) + song_detail = '%s (%s)' % (author.display_name, song.title) song_name = QtGui.QListWidgetItem(song_detail) song_name.setData(QtCore.Qt.UserRole, QtCore.QVariant(song.id)) self.listView.addItem(song_name) @@ -270,7 +268,8 @@ class SongMediaItem(MediaManagerItem): """ Edit a song """ - if check_item_selected(self.listView, translate('SongsPlugin.MediaItem', + if check_item_selected(self.listView, + translate('SongsPlugin.MediaItem', 'You must select an item to edit.')): item = self.listView.currentItem() item_id = (item.data(QtCore.Qt.UserRole)).toInt()[0] @@ -281,18 +280,19 @@ class SongMediaItem(MediaManagerItem): """ Remove a song from the list and database """ - if check_item_selected(self.listView, translate('SongsPlugin.MediaItem', + if check_item_selected(self.listView, + translate('SongsPlugin.MediaItem', 'You must select an item to delete.')): items = self.listView.selectedIndexes() if len(items) == 1: del_message = translate('SongsPlugin.MediaItem', - 'Delete song?') + 'Are you sure you want to delete the selected song?') else: - del_message = unicode( - translate('SongsPlugin.MediaItem', - 'Delete %d songs?')) % len(items) + del_message = unicode(translate('SongsPlugin.MediaItem', + 'Are you sure you want to delete the %d selected ' + 'songs?')) % len(items) ans = QtGui.QMessageBox.question(self, - translate('SongsPlugin.MediaItem', 'Delete Confirmation'), + translate('SongsPlugin.MediaItem', 'Delete Song(s)?'), del_message, QtGui.QMessageBox.StandardButtons(QtGui.QMessageBox.Ok| QtGui.QMessageBox.Cancel), diff --git a/openlp/plugins/songs/lib/songstab.py b/openlp/plugins/songs/lib/songstab.py index 13e497014..e9579aa7f 100644 --- a/openlp/plugins/songs/lib/songstab.py +++ b/openlp/plugins/songs/lib/songstab.py @@ -66,7 +66,7 @@ class SongsTab(SettingsTab): self.SearchAsTypeCheckBox.setText( translate('SongsPlugin.SongsTab', 'Enable search as you type')) self.SongBarActiveCheckBox.setText(translate('SongsPlugin.SongsTab', - 'Display Verses on Live Tool bar')) + 'Display verses on live tool bar')) def onSearchAsTypeCheckBoxChanged(self, check_state): self.song_search = False diff --git a/resources/i18n/openlp_af.ts b/resources/i18n/openlp_af.ts index cf3015e39..b41fe2f51 100644 --- a/resources/i18n/openlp_af.ts +++ b/resources/i18n/openlp_af.ts @@ -14,8 +14,8 @@ - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - <b>Waarskuwing Inprop</b><br/>Hierdie inprop beheer die vertoning van waarskuwings op die aanbieding skerm + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen + @@ -171,8 +171,8 @@ - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - <strong>Bybel Miniprogram</strong><br/>Dié miniprogram laat toe dat Bybel verse van verskillende bronne op die skerm vertoon kan word gedurende die diens. + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + @@ -655,7 +655,7 @@ Changes do not affect verses already in the service. CustomPlugin - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> + <strong>Custom Plugin</strong><br />The custom plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. @@ -827,7 +827,7 @@ Changes do not affect verses already in the service. ImagePlugin - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. @@ -906,8 +906,8 @@ Changes do not affect verses already in the service. MediaPlugin - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - <b>Media Inprop</b><br/>Hierdie inprop verskaf die vermoë om audio of video media te speel + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + @@ -1643,7 +1643,7 @@ This General Public License does not permit incorporating your program into prop OpenLP.MainWindow - + OpenLP 2.0 OpenLP 2.0 @@ -1653,404 +1653,404 @@ This General Public License does not permit incorporating your program into prop Engels - + &File &Lêer - + &Import &Invoer - + &Export &Uitvoer - + &View &Bekyk - + M&ode M&odus - + &Tools &Gereedskap - + &Settings Ver&stellings - + &Language Taa&l - + &Help &Hulp - + Media Manager Media Bestuurder - + Service Manager Diens Bestuurder - + Theme Manager Tema Bestuurder - + &New &Nuwe - + New Service Nuwe Diens - + Create a new service. - + Ctrl+N Ctrl+N - + &Open Maak &Oop - + Open Service Maak Diens Oop - + Open an existing service. - + Ctrl+O Ctrl+O - + &Save &Stoor - + Save Service Stoor Diens - + Save the current service to disk. - + Ctrl+S Ctrl+S - + Save &As... Stoor &As... - + Save Service As Stoor Diens As - + Save the current service under a new name. - + Ctrl+Shift+S - + E&xit &Uitgang - + Quit OpenLP Sluit OpenLP Af - + Alt+F4 Alt+F4 - + &Theme &Tema - + &Configure OpenLP... - + &Media Manager &Media Bestuurder - + Toggle Media Manager Wissel Media Bestuurder - + Toggle the visibility of the media manager. - + F8 F8 - + &Theme Manager &Tema Bestuurder - + Toggle Theme Manager Wissel Tema Bestuurder - + Toggle the visibility of the theme manager. - + F10 F10 - + &Service Manager &Diens Bestuurder - + Toggle Service Manager Wissel Diens Bestuurder - + Toggle the visibility of the service manager. - + F9 F9 - + &Preview Panel &Voorskou Paneel - + Toggle Preview Panel Wissel Voorskou Paneel - + Toggle the visibility of the preview panel. - + F11 F11 - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + F12 F12 - + &Plugin List In&prop Lys - + List the Plugins Lys die Inproppe - + Alt+F7 Alt+F7 - + &User Guide &Gebruikers Gids - + &About &Aangaande - + More information about OpenLP Meer inligting aangaande OpenLP - + Ctrl+F1 Ctrl+F1 - + &Online Help &Aanlyn Hulp - + &Web Site &Web Tuiste - + &Auto Detect - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live &Regstreeks - + Set the view mode to Live. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from <a href="http://openlp.org/">http://openlp.org/</a>. - + OpenLP Version Updated OpenLP Weergawe is Opdateer - + OpenLP Main Display Blanked OpenLP Hoof Vertoning Blanko - + The Main Display has been blanked out Die Hoof Skerm is blanko - + Save Changes to Service? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s @@ -2567,11 +2567,238 @@ The content encoding is not UTF-8. Gaan na Vers + + OpenLP.ThemeManager + + + New Theme + Nuwe Tema + + + + Create a new theme. + + + + + Edit Theme + Wysig Tema + + + + Edit a theme. + + + + + Delete Theme + Wis Tema Uit + + + + Delete a theme. + + + + + Import Theme + Tema Invoer + + + + Import a theme. + + + + + Export Theme + Voer Tema Uit + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete theme? + + + + + Error + Fout + + + + You are unable to delete the default theme. + + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + + + + + Save Theme - (%s) + Stoor Tema - (%s) + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Select Theme Import File + Kies Tema Invoer Lêer + + + + Theme (*.*) + + + + + File is not a valid theme. +The content encoding is not UTF-8. + + + + + File is not a valid theme. + + + + + Theme Exists + Tema Bestaan + + + + A theme with this name already exists. Would you like to overwrite it? + + + + + OpenLP.ThemesTab + + + Themes + Temas + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Gebruik die tema van elke lied in die lied-databasis. As 'n lied nie 'n geassosieërde tema het nie, gebruik die diens se tema. As die diens nie 'n tema het nie, gebruik dan die globale tema. + + + + &Service Level + + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + Gebruik die tema van die diens en verplaas enige van die individuele liedere se temas. As die diens nie 'n tema het nie, gebruik dan die globale tema. + + + + &Global Level + + + + + Use the global theme, overriding any themes associated with either the service or the songs. + Gebruik die globale tema om enige temas wat met die diens of liedere geassosieer is te vervang. + + PresentationPlugin - - <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. @@ -2583,42 +2810,42 @@ The content encoding is not UTF-8. Aanbieding - + Select Presentation(s) Selekteer Aanbieding(e) - + Automatic - + Present using: Bied aan met: - + File Exists - + A presentation with that filename already exists. 'n Voorstelling met daardie lêernaam bestaan reeds. - + Unsupported File - + This type of presentation is not supported - + You must select an item to delete. @@ -2631,16 +2858,26 @@ The content encoding is not UTF-8. Aanbiedinge - + Available Controllers Beskikbare Beheerders + + + Advanced + + + + + Allow presentation application to be overriden + + RemotePlugin - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer via a web browser or other app<br>The Primary use for this would be to send alerts from a creche + <strong>Remote Plugin</strong><br/ >The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. @@ -2669,45 +2906,45 @@ The content encoding is not UTF-8. SongUsagePlugin + + + &Song Usage Tracking + + - &Delete recorded data - &Wis opname data uit - - - - Start/Stop live song usage recording - Begin/Stop regstreekse lied-gebruik opname - - - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - <b>SongUsage Inprop</b><br>Hierdie inprop stoor die gebruik van liedere en wanneer dit gebruik was gedurende 'n regstreekse diens. + &Delete Tracking Data + - Delete song usage to specified date - Wis lied-gebruik uit tot gespesifiseerde datum - - - - Generate report on Song Usage - Genereer verslag van Lied Gebruik - - - - Song Usage Status - Lied Gebruik Status + Delete song usage data up to a specified date. + - &Extract recorded data - V&erkry aangetekende data + &Extract Tracking Data + - - &Song Usage - &Lied Gebruik + + Generate a report on song usage. + + + + + Toggle Tracking + + + + + Toggle the tracking of song usage. + + + + + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. + @@ -2861,7 +3098,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. @@ -2920,21 +3157,11 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R &Title: - - - Alt&ernate Title: - - &Lyrics: - - - &Verse Order: - - &Add @@ -3025,11 +3252,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R © - - - CCLI Number: - CCLI Nommer: - Comments @@ -3140,6 +3362,21 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R This song book does not exist, do you want to add it? + + + Alt&ernate title: + + + + + &Verse order: + + + + + CCLI number: + + SongsPlugin.EditVerseForm @@ -3350,40 +3587,35 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Skrywers - - %s (%s) - - - - + You must select an item to edit. - + You must select an item to delete. - - - Delete song? - - - - - Delete %d songs? - - - - - Delete Confirmation - - CCLI Licence: CCLI Lisensie: + + + Are you sure you want to delete the selected song? + + + + + Are you sure you want to delete the %d selected songs? + + + + + Delete Song(s)? + + SongsPlugin.SongBookForm @@ -3593,7 +3825,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - Display Verses on Live Tool bar + Display verses on live tool bar @@ -3621,247 +3853,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - Splashscreen - - - Starting - Begin - - - - Splash Screen - Spatsel Skerm - - - - ThemeManager - - - Import Theme - Tema Invoer - - - - Delete Theme - Wis Tema Uit - - - - Error - Fout - - - - Edit Theme - Wysig Tema - - - - Export Theme - Voer Tema Uit - - - - Theme Exists - Tema Bestaan - - - - Save Theme - (%s) - Stoor Tema - (%s) - - - - Select Theme Import File - Kies Tema Invoer Lêer - - - - New Theme - Nuwe Tema - - - - Create a new theme. - - - - - Edit a theme. - - - - - Delete a theme. - - - - - Import a theme. - - - - - Export a theme. - - - - - &Edit Theme - - - - - &Delete Theme - - - - - Set As &Global Default - - - - - E&xport Theme - - - - - %s (default) - - - - - You must select a theme to edit. - - - - - You must select a theme to delete. - - - - - Delete Confirmation - - - - - Delete theme? - - - - - You are unable to delete the default theme. - - - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - - - - - You have not selected a theme. - - - - - Theme Exported - - - - - Your theme has been successfully exported. - - - - - Theme Export Failed - - - - - Your theme could not be exported due to an error. - - - - - Theme (*.*) - - - - - File is not a valid theme. -The content encoding is not UTF-8. - - - - - File is not a valid theme. - - - - - A theme with this name already exists. Would you like to overwrite it? - - - - - ThemesTab - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - Gebruik die tema van elke lied in die lied-databasis. As 'n lied nie 'n geassosieërde tema het nie, gebruik die diens se tema. As die diens nie 'n tema het nie, gebruik dan die globale tema. - - - - Use the global theme, overriding any themes associated with either the service or the songs. - Gebruik die globale tema om enige temas wat met die diens of liedere geassosieer is te vervang. - - - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - Gebruik die tema van die diens en verplaas enige van die individuele liedere se temas. As die diens nie 'n tema het nie, gebruik dan die globale tema. - - - - Themes - Temas - - - - Global Theme - - - - - Theme Level - - - - - S&ong Level - - - - - &Service Level - - - - - &Global Level - - - - - VerseType + SongsPlugin.VerseType Verse diff --git a/resources/i18n/openlp_de.ts b/resources/i18n/openlp_de.ts index 63449e515..022a1a412 100644 --- a/resources/i18n/openlp_de.ts +++ b/resources/i18n/openlp_de.ts @@ -7,16 +7,16 @@ &Alert &Hinweis - - - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - <b>Hinweis-Plugin</b><br>Dieses Plugin ermöglicht Hinweise auf dem Projektionsbildschirm anzuzeigen - Show an alert message. + + + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen + + AlertsPlugin.AlertForm @@ -171,8 +171,8 @@ - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - <strong>Bibel-Plugin</strong><br />Mit diesem Plugin können Sie Bibeltexte aus verschiedenen Quellen während des Gottesdienstes anzeigen lassen. + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + @@ -655,7 +655,7 @@ Changes do not affect verses already in the service. CustomPlugin - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> + <strong>Custom Plugin</strong><br />The custom plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. @@ -827,7 +827,7 @@ Changes do not affect verses already in the service. ImagePlugin - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. @@ -906,8 +906,8 @@ Changes do not affect verses already in the service. MediaPlugin - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - <b>Medien Plugin</b><br>Dieses Plugin ermöglicht das Abspielen von Audio und Video Material + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + @@ -1643,7 +1643,7 @@ This General Public License does not permit incorporating your program into prop OpenLP.MainWindow - + OpenLP 2.0 OpenLP 2.0 @@ -1653,404 +1653,404 @@ This General Public License does not permit incorporating your program into prop Deutsch - + &File &Datei - + &Import &Importieren - + &Export &Exportieren - + &View &Ansicht - + M&ode M&odus - + &Tools &Extras - + &Settings Ein&stellungen - + &Language &Sprache - + &Help &Hilfe - + Media Manager Medienmanager - + Service Manager Ablaufverwaltung - + Theme Manager Designmanager - + &New &Neu - + New Service Neuer Ablauf - + Create a new service. - + Ctrl+N Strg+N - + &Open &Öffnen - + Open Service Öffnen Ablauf - + Open an existing service. - + Ctrl+O Strg+O - + &Save &Speichern - + Save Service Ablauf speichern - + Save the current service to disk. - + Ctrl+S Strg+S - + Save &As... Speichern &als... - + Save Service As Speicher Gottesdienst unter - + Save the current service under a new name. - + Ctrl+Shift+S - + E&xit &Beenden - + Quit OpenLP OpenLP beenden - + Alt+F4 Alt+F4 - + &Theme &Design - + &Configure OpenLP... - + &Media Manager &Medienmanager - + Toggle Media Manager Medienmanager ein/ausblenden - + Toggle the visibility of the media manager. - + F8 F8 - + &Theme Manager &Designmanager - + Toggle Theme Manager Designverwaltung ein/ausblenden - + Toggle the visibility of the theme manager. - + F10 F10 - + &Service Manager Ablauf&sverwaltung - + Toggle Service Manager Ablaufmanager ein/ausblenden - + Toggle the visibility of the service manager. - + F9 F9 - + &Preview Panel &Vorschaubereich - + Toggle Preview Panel Vorschaubereich ein/ausblenden - + Toggle the visibility of the preview panel. - + F11 F11 - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + F12 F12 - + &Plugin List &Plugin-Liste - + List the Plugins Plugins auflisten - + Alt+F7 Alt+F7 - + &User Guide Ben&utzerhandbuch - + &About &Über - + More information about OpenLP Mehr Informationen über OpenLP - + Ctrl+F1 Strg+F1 - + &Online Help &Online Hilfe - + &Web Site &Webseite - + &Auto Detect - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live &Live - + Set the view mode to Live. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from <a href="http://openlp.org/">http://openlp.org/</a>. - + OpenLP Version Updated OpenLP-Version aktualisiert - + OpenLP Main Display Blanked Hauptbildschirm abgedunkelt - + The Main Display has been blanked out Die Projektion ist momentan nicht aktiv - + Save Changes to Service? Änderungen am Ablauf speichern? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s @@ -2567,11 +2567,238 @@ The content encoding is not UTF-8. Springe zu + + OpenLP.ThemeManager + + + New Theme + Neues Design + + + + Create a new theme. + + + + + Edit Theme + Design bearbeiten + + + + Edit a theme. + + + + + Delete Theme + Design löschen + + + + Delete a theme. + + + + + Import Theme + Design importieren + + + + Import a theme. + + + + + Export Theme + Design exportieren + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete theme? + + + + + Error + Fehler + + + + You are unable to delete the default theme. + + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + + + + + Save Theme - (%s) + Speichere Design - (%s) + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Select Theme Import File + Wähle Datei für Design Import + + + + Theme (*.*) + + + + + File is not a valid theme. +The content encoding is not UTF-8. + + + + + File is not a valid theme. + + + + + Theme Exists + Design existiert + + + + A theme with this name already exists. Would you like to overwrite it? + + + + + OpenLP.ThemesTab + + + Themes + Designs + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Das im jeweiligen Lied eingestellte Design verwenden. Wenn für ein Lied kein Design festgelegt ist, wird das Ablaufdesign verwendet. Wenn dort auch kein Design festgelegt wurde, wird das Standarddesign benutzt. + + + + &Service Level + + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + Nutze das dem Ablauf zugewiesene Design, das im Lied eingestellte Design wird ignoriert. Wenn dem Ablauf kein Design zugeordnet ist, dann wird das Standarddesign verwendet. + + + + &Global Level + + + + + Use the global theme, overriding any themes associated with either the service or the songs. + Das Standarddesign immer verwenden, unabhängig vom Lieddesign oder Ablaufdesign + + PresentationPlugin - - <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. @@ -2583,42 +2810,42 @@ The content encoding is not UTF-8. Präsentation - + Select Presentation(s) Präsentation(en) auswählen - + Automatic - + Present using: Anzeigen mit: - + A presentation with that filename already exists. Eine Präsentation mit diesem Dateinamen existiert bereits. - + You must select an item to delete. - + File Exists - + Unsupported File - + This type of presentation is not supported @@ -2631,16 +2858,26 @@ The content encoding is not UTF-8. Präsentationen - + Available Controllers Verfügbare Präsentationsprogramme: + + + Advanced + + + + + Allow presentation application to be overriden + + RemotePlugin - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer via a web browser or other app<br>The Primary use for this would be to send alerts from a creche + <strong>Remote Plugin</strong><br/ >The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. @@ -2669,45 +2906,45 @@ The content encoding is not UTF-8. SongUsagePlugin + + + &Song Usage Tracking + + - &Delete recorded data - Aufgezeichnete &Daten löschen - - - - Start/Stop live song usage recording - Liederstatistik unterbrechen/weiterführen - - - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - <b>SongUsage-Plugin</b><br>Dieses Plugin zeichnet auf, welche Lieder Sie wie oft und wann benutzt haben und erstellt daraus eine Statistik + &Delete Tracking Data + - Delete song usage to specified date - Liedstatistik bis zu einem bestimmten Termin löschen - - - - Generate report on Song Usage - Liederstatistik generieren - - - - Song Usage Status - Liedstatistik + Delete song usage data up to a specified date. + - &Extract recorded data - &Entpacke aufgezeichnete Daten + &Extract Tracking Data + - - &Song Usage - Lieder Statistik + + Generate a report on song usage. + + + + + Toggle Tracking + + + + + Toggle the tracking of song usage. + + + + + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. + @@ -2809,11 +3046,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Open documents or presentations - - - <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. - - OpenSong (temp menu item) @@ -2864,6 +3096,11 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Error importing OpenLP v2 database(s) + + + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + SongsPlugin.AuthorsForm @@ -2920,21 +3157,11 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R &Title: - - - Alt&ernate Title: - - &Lyrics: - - - &Verse Order: - - &Add @@ -3015,11 +3242,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R © - - - CCLI Number: - CCLI-Nummer: - Comments @@ -3140,6 +3362,21 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R This topic is already in the list. + + + Alt&ernate title: + + + + + &Verse order: + + + + + CCLI number: + + SongsPlugin.EditVerseForm @@ -3350,40 +3587,35 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Autoren - - %s (%s) - - - - + You must select an item to edit. - + You must select an item to delete. - - - Delete song? - - - - - Delete %d songs? - - - - - Delete Confirmation - - CCLI Licence: CCLI-Lizenz: + + + Are you sure you want to delete the selected song? + + + + + Are you sure you want to delete the %d selected songs? + + + + + Delete Song(s)? + + SongsPlugin.SongBookForm @@ -3593,7 +3825,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - Display Verses on Live Tool bar + Display verses on live tool bar @@ -3621,247 +3853,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - Splashscreen - - - Starting - Starte ... - - - - Splash Screen - Startbildschirm - - - - ThemeManager - - - Import Theme - Design importieren - - - - Delete Theme - Design löschen - - - - Error - Fehler - - - - Edit Theme - Design bearbeiten - - - - Export Theme - Design exportieren - - - - Theme Exists - Design existiert - - - - Save Theme - (%s) - Speichere Design - (%s) - - - - Select Theme Import File - Wähle Datei für Design Import - - - - New Theme - Neues Design - - - - Create a new theme. - - - - - Edit a theme. - - - - - Delete a theme. - - - - - Import a theme. - - - - - Export a theme. - - - - - &Edit Theme - - - - - &Delete Theme - - - - - Set As &Global Default - - - - - E&xport Theme - - - - - %s (default) - - - - - You must select a theme to edit. - - - - - You must select a theme to delete. - - - - - You are unable to delete the default theme. - - - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - - - - - You have not selected a theme. - - - - - Theme Exported - - - - - Your theme has been successfully exported. - - - - - Theme Export Failed - - - - - Your theme could not be exported due to an error. - - - - - Theme (*.*) - - - - - File is not a valid theme. -The content encoding is not UTF-8. - - - - - File is not a valid theme. - - - - - Delete Confirmation - - - - - Delete theme? - - - - - A theme with this name already exists. Would you like to overwrite it? - - - - - ThemesTab - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - Das im jeweiligen Lied eingestellte Design verwenden. Wenn für ein Lied kein Design festgelegt ist, wird das Ablaufdesign verwendet. Wenn dort auch kein Design festgelegt wurde, wird das Standarddesign benutzt. - - - - Use the global theme, overriding any themes associated with either the service or the songs. - Das Standarddesign immer verwenden, unabhängig vom Lieddesign oder Ablaufdesign - - - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - Nutze das dem Ablauf zugewiesene Design, das im Lied eingestellte Design wird ignoriert. Wenn dem Ablauf kein Design zugeordnet ist, dann wird das Standarddesign verwendet. - - - - Themes - Designs - - - - Global Theme - - - - - Theme Level - - - - - S&ong Level - - - - - &Service Level - - - - - &Global Level - - - - - VerseType + SongsPlugin.VerseType Verse diff --git a/resources/i18n/openlp_en.ts b/resources/i18n/openlp_en.ts index be71ac581..665eb1e95 100644 --- a/resources/i18n/openlp_en.ts +++ b/resources/i18n/openlp_en.ts @@ -14,7 +14,7 @@ - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen @@ -171,7 +171,7 @@ - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. @@ -655,7 +655,7 @@ Changes do not affect verses already in the service. CustomPlugin - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> + <strong>Custom Plugin</strong><br />The custom plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. @@ -827,7 +827,7 @@ Changes do not affect verses already in the service. ImagePlugin - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. @@ -906,7 +906,7 @@ Changes do not affect verses already in the service. MediaPlugin - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. @@ -1643,7 +1643,7 @@ This General Public License does not permit incorporating your program into prop OpenLP.MainWindow - + OpenLP 2.0 @@ -1653,404 +1653,404 @@ This General Public License does not permit incorporating your program into prop - + &File - + &Import - + &Export - + &View - + M&ode - + &Tools - + &Settings - + &Language - + &Help - + Media Manager - + Service Manager - + Theme Manager - + &New - + New Service - + Create a new service. - + Ctrl+N - + &Open - + Open Service - + Open an existing service. - + Ctrl+O - + &Save - + Save Service - + Save the current service to disk. - + Ctrl+S - + Save &As... - + Save Service As - + Save the current service under a new name. - + Ctrl+Shift+S - + E&xit - + Quit OpenLP - + Alt+F4 - + &Theme - + &Configure OpenLP... - + &Media Manager - + Toggle Media Manager - + Toggle the visibility of the media manager. - + F8 - + &Theme Manager - + Toggle Theme Manager - + Toggle the visibility of the theme manager. - + F10 - + &Service Manager - + Toggle Service Manager - + Toggle the visibility of the service manager. - + F9 - + &Preview Panel - + Toggle Preview Panel - + Toggle the visibility of the preview panel. - + F11 - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + F12 - + &Plugin List - + List the Plugins - + Alt+F7 - + &User Guide - + &About - + More information about OpenLP - + Ctrl+F1 - + &Online Help - + &Web Site - + &Auto Detect - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live - + Set the view mode to Live. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from <a href="http://openlp.org/">http://openlp.org/</a>. - + OpenLP Version Updated - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Save Changes to Service? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s @@ -2567,11 +2567,238 @@ The content encoding is not UTF-8. + + OpenLP.ThemeManager + + + New Theme + + + + + Create a new theme. + + + + + Edit Theme + + + + + Edit a theme. + + + + + Delete Theme + + + + + Delete a theme. + + + + + Import Theme + + + + + Import a theme. + + + + + Export Theme + + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete theme? + + + + + Error + + + + + You are unable to delete the default theme. + + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + + + + + Save Theme - (%s) + + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Select Theme Import File + + + + + Theme (*.*) + + + + + File is not a valid theme. +The content encoding is not UTF-8. + + + + + File is not a valid theme. + + + + + Theme Exists + + + + + A theme with this name already exists. Would you like to overwrite it? + + + + + OpenLP.ThemesTab + + + Themes + + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + + + + + &Service Level + + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + + + + + &Global Level + + + + + Use the global theme, overriding any themes associated with either the service or the songs. + + + PresentationPlugin - - <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. @@ -2583,42 +2810,42 @@ The content encoding is not UTF-8. - + Select Presentation(s) - + Automatic - + Present using: - + File Exists - + A presentation with that filename already exists. - + Unsupported File - + This type of presentation is not supported - + You must select an item to delete. @@ -2631,16 +2858,26 @@ The content encoding is not UTF-8. - + Available Controllers + + + Advanced + + + + + Allow presentation application to be overriden + + RemotePlugin - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer via a web browser or other app<br>The Primary use for this would be to send alerts from a creche + <strong>Remote Plugin</strong><br/ >The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. @@ -2669,44 +2906,44 @@ The content encoding is not UTF-8. SongUsagePlugin + + + &Song Usage Tracking + + - &Delete recorded data - - - - - Start/Stop live song usage recording - - - - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service + &Delete Tracking Data - Delete song usage to specified date - - - - - Generate report on Song Usage - - - - - Song Usage Status + Delete song usage data up to a specified date. - &Extract recorded data + &Extract Tracking Data - - &Song Usage + + Generate a report on song usage. + + + + + Toggle Tracking + + + + + Toggle the tracking of song usage. + + + + + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. @@ -2861,7 +3098,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. @@ -2920,21 +3157,11 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R &Title: - - - Alt&ernate Title: - - &Lyrics: - - - &Verse Order: - - &Add @@ -3025,11 +3252,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R © - - - CCLI Number: - - Comments @@ -3140,6 +3362,21 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R This song book does not exist, do you want to add it? + + + Alt&ernate title: + + + + + &Verse order: + + + + + CCLI number: + + SongsPlugin.EditVerseForm @@ -3350,40 +3587,35 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - - %s (%s) - - - - + You must select an item to edit. - + You must select an item to delete. - - - Delete song? - - - - - Delete %d songs? - - - - - Delete Confirmation - - CCLI Licence: + + + Are you sure you want to delete the selected song? + + + + + Are you sure you want to delete the %d selected songs? + + + + + Delete Song(s)? + + SongsPlugin.SongBookForm @@ -3593,7 +3825,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - Display Verses on Live Tool bar + Display verses on live tool bar @@ -3621,247 +3853,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - Splashscreen - - - Starting - - - - - Splash Screen - - - - - ThemeManager - - - Import Theme - - - - - Delete Theme - - - - - Error - - - - - Edit Theme - - - - - Export Theme - - - - - Theme Exists - - - - - Save Theme - (%s) - - - - - Select Theme Import File - - - - - New Theme - - - - - Create a new theme. - - - - - Edit a theme. - - - - - Delete a theme. - - - - - Import a theme. - - - - - Export a theme. - - - - - &Edit Theme - - - - - &Delete Theme - - - - - Set As &Global Default - - - - - E&xport Theme - - - - - %s (default) - - - - - You must select a theme to edit. - - - - - You must select a theme to delete. - - - - - Delete Confirmation - - - - - Delete theme? - - - - - You are unable to delete the default theme. - - - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - - - - - You have not selected a theme. - - - - - Theme Exported - - - - - Your theme has been successfully exported. - - - - - Theme Export Failed - - - - - Your theme could not be exported due to an error. - - - - - Theme (*.*) - - - - - File is not a valid theme. -The content encoding is not UTF-8. - - - - - File is not a valid theme. - - - - - A theme with this name already exists. Would you like to overwrite it? - - - - - ThemesTab - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - - - - - Use the global theme, overriding any themes associated with either the service or the songs. - - - - - Themes - - - - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - - - - - Global Theme - - - - - Theme Level - - - - - S&ong Level - - - - - &Service Level - - - - - &Global Level - - - - - VerseType + SongsPlugin.VerseType Verse diff --git a/resources/i18n/openlp_en_GB.ts b/resources/i18n/openlp_en_GB.ts index 27c2863e9..fe066d402 100644 --- a/resources/i18n/openlp_en_GB.ts +++ b/resources/i18n/openlp_en_GB.ts @@ -14,8 +14,8 @@ - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen + @@ -171,8 +171,8 @@ - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + @@ -655,7 +655,7 @@ Changes do not affect verses already in the service. CustomPlugin - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> + <strong>Custom Plugin</strong><br />The custom plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. @@ -827,7 +827,7 @@ Changes do not affect verses already in the service. ImagePlugin - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. @@ -906,8 +906,8 @@ Changes do not affect verses already in the service. MediaPlugin - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + @@ -1643,7 +1643,7 @@ This General Public License does not permit incorporating your program into prop OpenLP.MainWindow - + OpenLP 2.0 OpenLP 2.0 @@ -1653,404 +1653,404 @@ This General Public License does not permit incorporating your program into prop English - + &File &File - + &Import &Import - + &Export &Export - + &View &View - + M&ode M&ode - + &Tools &Tools - + &Settings &Settings - + &Language &Language - + &Help &Help - + Media Manager Media Manager - + Service Manager Service Manager - + Theme Manager Theme Manager - + &New &New - + New Service New Service - + Create a new service. - + Ctrl+N Ctrl+N - + &Open &Open - + Open Service Open Service - + Open an existing service. - + Ctrl+O Ctrl+O - + &Save &Save - + Save Service Save Service - + Save the current service to disk. - + Ctrl+S Ctrl+S - + Save &As... Save &As... - + Save Service As Save Service As - + Save the current service under a new name. - + Ctrl+Shift+S - + E&xit E&xit - + Quit OpenLP Quit OpenLP - + Alt+F4 Alt+F4 - + &Theme &Theme - + &Configure OpenLP... - + &Media Manager &Media Manager - + Toggle Media Manager Toggle Media Manager - + Toggle the visibility of the media manager. - + F8 F8 - + &Theme Manager &Theme Manager - + Toggle Theme Manager Toggle Theme Manager - + Toggle the visibility of the theme manager. - + F10 F10 - + &Service Manager &Service Manager - + Toggle Service Manager Toggle Service Manager - + Toggle the visibility of the service manager. - + F9 F9 - + &Preview Panel &Preview Panel - + Toggle Preview Panel Toggle Preview Panel - + Toggle the visibility of the preview panel. - + F11 F11 - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + F12 F12 - + &Plugin List &Plugin List - + List the Plugins List the Plugins - + Alt+F7 Alt+F7 - + &User Guide &User Guide - + &About &About - + More information about OpenLP More information about OpenLP - + Ctrl+F1 Ctrl+F1 - + &Online Help &Online Help - + &Web Site &Web Site - + &Auto Detect - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live &Live - + Set the view mode to Live. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from <a href="http://openlp.org/">http://openlp.org/</a>. - + OpenLP Version Updated OpenLP Version Updated - + OpenLP Main Display Blanked OpenLP Main Display Blanked - + The Main Display has been blanked out The Main Display has been blanked out - + Save Changes to Service? Save Changes to Service? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s @@ -2567,11 +2567,238 @@ The content encoding is not UTF-8. Go to Verse + + OpenLP.ThemeManager + + + New Theme + New Theme + + + + Create a new theme. + + + + + Edit Theme + Edit Theme + + + + Edit a theme. + + + + + Delete Theme + Delete Theme + + + + Delete a theme. + + + + + Import Theme + Import Theme + + + + Import a theme. + + + + + Export Theme + Export Theme + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete theme? + + + + + Error + Error + + + + You are unable to delete the default theme. + + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + + + + + Save Theme - (%s) + Save Theme - (%s) + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Select Theme Import File + Select Theme Import File + + + + Theme (*.*) + + + + + File is not a valid theme. +The content encoding is not UTF-8. + + + + + File is not a valid theme. + + + + + Theme Exists + Theme Exists + + + + A theme with this name already exists. Would you like to overwrite it? + + + + + OpenLP.ThemesTab + + + Themes + Themes + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + + + + &Service Level + + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + + + + &Global Level + + + + + Use the global theme, overriding any themes associated with either the service or the songs. + Use the global theme, overriding any themes associated with either the service or the songs. + + PresentationPlugin - - <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. @@ -2583,42 +2810,42 @@ The content encoding is not UTF-8. Presentation - + Select Presentation(s) Select Presentation(s) - + Automatic - + Present using: Present using: - + File Exists - + A presentation with that filename already exists. A presentation with that filename already exists. - + Unsupported File - + This type of presentation is not supported - + You must select an item to delete. @@ -2631,16 +2858,26 @@ The content encoding is not UTF-8. Presentations - + Available Controllers Available Controllers + + + Advanced + + + + + Allow presentation application to be overriden + + RemotePlugin - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer via a web browser or other app<br>The Primary use for this would be to send alerts from a creche + <strong>Remote Plugin</strong><br/ >The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. @@ -2669,45 +2906,45 @@ The content encoding is not UTF-8. SongUsagePlugin + + + &Song Usage Tracking + + - &Delete recorded data - &Delete recorded data - - - - Start/Stop live song usage recording - Start/Stop live song usage recording - - - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service + &Delete Tracking Data + - Delete song usage to specified date - Delete song usage to specified date - - - - Generate report on Song Usage - Generate report on Song Usage - - - - Song Usage Status - Song Usage Status + Delete song usage data up to a specified date. + - &Extract recorded data - &Extract recorded data + &Extract Tracking Data + - - &Song Usage - &Song Usage + + Generate a report on song usage. + + + + + Toggle Tracking + + + + + Toggle the tracking of song usage. + + + + + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. + @@ -2861,7 +3098,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. @@ -2920,21 +3157,11 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R &Title: - - - Alt&ernate Title: - - &Lyrics: - - - &Verse Order: - - &Add @@ -3025,11 +3252,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R © - - - CCLI Number: - CCLI Number: - Comments @@ -3140,6 +3362,21 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R This song book does not exist, do you want to add it? + + + Alt&ernate title: + + + + + &Verse order: + + + + + CCLI number: + + SongsPlugin.EditVerseForm @@ -3350,40 +3587,35 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Authors - - %s (%s) - - - - + You must select an item to edit. - + You must select an item to delete. - - - Delete song? - - - - - Delete %d songs? - - - - - Delete Confirmation - - CCLI Licence: CCLI Licence: + + + Are you sure you want to delete the selected song? + + + + + Are you sure you want to delete the %d selected songs? + + + + + Delete Song(s)? + + SongsPlugin.SongBookForm @@ -3593,7 +3825,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - Display Verses on Live Tool bar + Display verses on live tool bar @@ -3621,247 +3853,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - Splashscreen - - - Starting - Starting - - - - Splash Screen - Splash Screen - - - - ThemeManager - - - Import Theme - Import Theme - - - - Delete Theme - Delete Theme - - - - Error - Error - - - - Edit Theme - Edit Theme - - - - Export Theme - Export Theme - - - - Theme Exists - Theme Exists - - - - Save Theme - (%s) - Save Theme - (%s) - - - - Select Theme Import File - Select Theme Import File - - - - New Theme - New Theme - - - - Create a new theme. - - - - - Edit a theme. - - - - - Delete a theme. - - - - - Import a theme. - - - - - Export a theme. - - - - - &Edit Theme - - - - - &Delete Theme - - - - - Set As &Global Default - - - - - E&xport Theme - - - - - %s (default) - - - - - You must select a theme to edit. - - - - - You must select a theme to delete. - - - - - Delete Confirmation - - - - - Delete theme? - - - - - You are unable to delete the default theme. - - - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - - - - - You have not selected a theme. - - - - - Theme Exported - - - - - Your theme has been successfully exported. - - - - - Theme Export Failed - - - - - Your theme could not be exported due to an error. - - - - - Theme (*.*) - - - - - File is not a valid theme. -The content encoding is not UTF-8. - - - - - File is not a valid theme. - - - - - A theme with this name already exists. Would you like to overwrite it? - - - - - ThemesTab - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - - - - Use the global theme, overriding any themes associated with either the service or the songs. - Use the global theme, overriding any themes associated with either the service or the songs. - - - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - - - - Themes - Themes - - - - Global Theme - - - - - Theme Level - - - - - S&ong Level - - - - - &Service Level - - - - - &Global Level - - - - - VerseType + SongsPlugin.VerseType Verse diff --git a/resources/i18n/openlp_en_ZA.ts b/resources/i18n/openlp_en_ZA.ts index bb086411f..158671e38 100644 --- a/resources/i18n/openlp_en_ZA.ts +++ b/resources/i18n/openlp_en_ZA.ts @@ -14,7 +14,7 @@ - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen @@ -171,8 +171,8 @@ - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + @@ -655,7 +655,7 @@ Changes do not affect verses already in the service. CustomPlugin - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> + <strong>Custom Plugin</strong><br />The custom plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. @@ -827,7 +827,7 @@ Changes do not affect verses already in the service. ImagePlugin - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. @@ -906,7 +906,7 @@ Changes do not affect verses already in the service. MediaPlugin - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. @@ -1643,7 +1643,7 @@ This General Public License does not permit incorporating your program into prop OpenLP.MainWindow - + OpenLP 2.0 @@ -1653,404 +1653,404 @@ This General Public License does not permit incorporating your program into prop English - + &File &File - + &Import &Import - + &Export &Export - + &View &View - + M&ode - + &Tools - + &Settings &Settings - + &Language - + &Help - + Media Manager Media Manager - + Service Manager Service Manager - + Theme Manager - + &New &New - + New Service - + Create a new service. - + Ctrl+N Ctrl+N - + &Open &Open - + Open Service Open Service - + Open an existing service. - + Ctrl+O Ctrl+O - + &Save - + Save Service - + Save the current service to disk. - + Ctrl+S Ctrl+S - + Save &As... - + Save Service As - + Save the current service under a new name. - + Ctrl+Shift+S - + E&xit - + Quit OpenLP Quit OpenLP - + Alt+F4 Alt+F4 - + &Theme - + &Configure OpenLP... - + &Media Manager - + Toggle Media Manager - + Toggle the visibility of the media manager. - + F8 F8 - + &Theme Manager - + Toggle Theme Manager Toggle Theme Manager - + Toggle the visibility of the theme manager. - + F10 - + &Service Manager &Service Manager - + Toggle Service Manager Toggle Service Manager. - + Toggle the visibility of the service manager. - + F9 F9 - + &Preview Panel &Preview Panel - + Toggle Preview Panel Toggle Preview Panel - + Toggle the visibility of the preview panel. - + F11 - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + F12 - + &Plugin List - + List the Plugins List the plugins - + Alt+F7 Alt+F7 - + &User Guide &User Guide - + &About - + More information about OpenLP - + Ctrl+F1 Ctrl+F1 - + &Online Help - + &Web Site - + &Auto Detect - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live &Live - + Set the view mode to Live. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from <a href="http://openlp.org/">http://openlp.org/</a>. - + OpenLP Version Updated OpenLP Version Updated - + OpenLP Main Display Blanked - + The Main Display has been blanked out The Main Display has been blanked out - + Save Changes to Service? Save Changes to Service? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s @@ -2567,11 +2567,238 @@ The content encoding is not UTF-8. Go to Verse + + OpenLP.ThemeManager + + + New Theme + + + + + Create a new theme. + + + + + Edit Theme + Edit Theme + + + + Edit a theme. + + + + + Delete Theme + Delete Theme + + + + Delete a theme. + + + + + Import Theme + Import Theme + + + + Import a theme. + + + + + Export Theme + Export Theme + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete theme? + + + + + Error + Error + + + + You are unable to delete the default theme. + + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + + + + + Save Theme - (%s) + Save Theme - (%s) + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Select Theme Import File + + + + + Theme (*.*) + + + + + File is not a valid theme. +The content encoding is not UTF-8. + + + + + File is not a valid theme. + + + + + Theme Exists + Theme Exists + + + + A theme with this name already exists. Would you like to overwrite it? + + + + + OpenLP.ThemesTab + + + Themes + Themes + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + + + + &Service Level + + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + + + + &Global Level + + + + + Use the global theme, overriding any themes associated with either the service or the songs. + Use the global theme, overriding any themes associated with either the service or the songs. + + PresentationPlugin - - <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. @@ -2583,42 +2810,42 @@ The content encoding is not UTF-8. Presentation - + Select Presentation(s) - + Automatic - + Present using: Present using: - + File Exists - + A presentation with that filename already exists. - + Unsupported File - + This type of presentation is not supported - + You must select an item to delete. @@ -2631,16 +2858,26 @@ The content encoding is not UTF-8. - + Available Controllers Available Controllers + + + Advanced + + + + + Allow presentation application to be overriden + + RemotePlugin - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer via a web browser or other app<br>The Primary use for this would be to send alerts from a creche + <strong>Remote Plugin</strong><br/ >The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. @@ -2670,43 +2907,43 @@ The content encoding is not UTF-8. SongUsagePlugin - - &Delete recorded data - &Delete recorded data - - - - Start/Stop live song usage recording - Start/Stop live song usage recording - - - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - - - - Delete song usage to specified date - Delete song usage to specified date - - - - Generate report on Song Usage - Generate report on Song Usage - - - - Song Usage Status - Song Usage Status - - - - &Extract recorded data + + &Song Usage Tracking - - &Song Usage + + &Delete Tracking Data + + + + + Delete song usage data up to a specified date. + + + + + &Extract Tracking Data + + + + + Generate a report on song usage. + + + + + Toggle Tracking + + + + + Toggle the tracking of song usage. + + + + + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. @@ -2861,7 +3098,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. @@ -2920,21 +3157,11 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R &Title: - - - Alt&ernate Title: - - &Lyrics: - - - &Verse Order: - - &Add @@ -3025,11 +3252,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R © - - - CCLI Number: - CCLI Number: - Comments @@ -3140,6 +3362,21 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R This song book does not exist, do you want to add it? + + + Alt&ernate title: + + + + + &Verse order: + + + + + CCLI number: + + SongsPlugin.EditVerseForm @@ -3350,40 +3587,35 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Authors - - %s (%s) - - - - + You must select an item to edit. - + You must select an item to delete. - - - Delete song? - - - - - Delete %d songs? - - - - - Delete Confirmation - - CCLI Licence: CCLI License: + + + Are you sure you want to delete the selected song? + + + + + Are you sure you want to delete the %d selected songs? + + + + + Delete Song(s)? + + SongsPlugin.SongBookForm @@ -3593,7 +3825,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - Display Verses on Live Tool bar + Display verses on live tool bar @@ -3621,247 +3853,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - Splashscreen - - - Starting - - - - - Splash Screen - Splash Screen - - - - ThemeManager - - - Import Theme - Import Theme - - - - Delete Theme - Delete Theme - - - - Error - Error - - - - Edit Theme - Edit Theme - - - - Export Theme - Export Theme - - - - Theme Exists - Theme Exists - - - - Save Theme - (%s) - Save Theme - (%s) - - - - Select Theme Import File - - - - - New Theme - - - - - Create a new theme. - - - - - Edit a theme. - - - - - Delete a theme. - - - - - Import a theme. - - - - - Export a theme. - - - - - &Edit Theme - - - - - &Delete Theme - - - - - Set As &Global Default - - - - - E&xport Theme - - - - - %s (default) - - - - - You must select a theme to edit. - - - - - You must select a theme to delete. - - - - - Delete Confirmation - - - - - Delete theme? - - - - - You are unable to delete the default theme. - - - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - - - - - You have not selected a theme. - - - - - Theme Exported - - - - - Your theme has been successfully exported. - - - - - Theme Export Failed - - - - - Your theme could not be exported due to an error. - - - - - Theme (*.*) - - - - - File is not a valid theme. -The content encoding is not UTF-8. - - - - - File is not a valid theme. - - - - - A theme with this name already exists. Would you like to overwrite it? - - - - - ThemesTab - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - - - - Use the global theme, overriding any themes associated with either the service or the songs. - Use the global theme, overriding any themes associated with either the service or the songs. - - - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - - - - Themes - Themes - - - - Global Theme - - - - - Theme Level - - - - - S&ong Level - - - - - &Service Level - - - - - &Global Level - - - - - VerseType + SongsPlugin.VerseType Verse diff --git a/resources/i18n/openlp_es.ts b/resources/i18n/openlp_es.ts index 024fef7a3..213fd8568 100644 --- a/resources/i18n/openlp_es.ts +++ b/resources/i18n/openlp_es.ts @@ -14,8 +14,8 @@ - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - <b>Alerts Plugin</b><br>Este plugin controla la visualización de alertas en la pantalla de presentaciones + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen + @@ -171,8 +171,8 @@ - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - <strong>Bible Plugin</strong><br />Este plugin permite visualizar versículos de la Biblia en la pantalla desde distintas fuentes durante el servicio. + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + @@ -655,7 +655,7 @@ Changes do not affect verses already in the service. CustomPlugin - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> + <strong>Custom Plugin</strong><br />The custom plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. @@ -827,7 +827,7 @@ Changes do not affect verses already in the service. ImagePlugin - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. @@ -906,8 +906,8 @@ Changes do not affect verses already in the service. MediaPlugin - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - <b>Media Plugin</b><br>Este plugin permite la reproducción de medios de audio y video + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + @@ -1643,7 +1643,7 @@ This General Public License does not permit incorporating your program into prop OpenLP.MainWindow - + OpenLP 2.0 OpenLP 2.0 @@ -1653,404 +1653,404 @@ This General Public License does not permit incorporating your program into prop Ingles - + &File &Archivo - + &Import &Importar - + &Export &Exportar - + &View &Ver - + M&ode M&odo - + &Tools &Herramientas - + &Settings &Preferencias - + &Language &Idioma - + &Help &Ayuda - + Media Manager Gestor de Medios - + Service Manager Gestor de Servicio - + Theme Manager Gestor de Temas - + &New &Nuevo - + New Service Servicio Nuevo - + Create a new service. - + Ctrl+N Ctrl+N - + &Open &Abrir - + Open Service Abrir Servicio - + Open an existing service. - + Ctrl+O Ctrl+O - + &Save &Guardar - + Save Service Guardar Servicio - + Save the current service to disk. - + Ctrl+S Crtl+G - + Save &As... Guardar &Como... - + Save Service As Guardar Servicio Como - + Save the current service under a new name. - + Ctrl+Shift+S - + E&xit &Salir - + Quit OpenLP Salir de OpenLP - + Alt+F4 Alt+F4 - + &Theme &Tema - + &Configure OpenLP... - + &Media Manager Gestor de &Medios - + Toggle Media Manager Alternar Gestor de Medios - + Toggle the visibility of the media manager. - + F8 F8 - + &Theme Manager Gestor de &Temas - + Toggle Theme Manager Alternar Gestor de Temas - + Toggle the visibility of the theme manager. - + F10 F10 - + &Service Manager Gestor de &Servicio - + Toggle Service Manager Alternar Gestor de Servicio - + Toggle the visibility of the service manager. - + F9 F9 - + &Preview Panel &Panel de Vista Previa - + Toggle Preview Panel Alternar Panel de Vista Previa - + Toggle the visibility of the preview panel. - + F11 F11 - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + F12 F12 - + &Plugin List Lista de &Plugins - + List the Plugins Lista de Plugins - + Alt+F7 Alt+F7 - + &User Guide Guía de &Usuario - + &About &Acerca De - + More information about OpenLP Más información acerca de OpenLP - + Ctrl+F1 Ctrl+F1 - + &Online Help &Ayuda En Línea - + &Web Site Sitio &Web - + &Auto Detect - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live En &vivo - + Set the view mode to Live. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from <a href="http://openlp.org/">http://openlp.org/</a>. - + OpenLP Version Updated Versión de OpenLP Actualizada - + OpenLP Main Display Blanked Pantalla Principal de OpenLP en Blanco - + The Main Display has been blanked out La Pantalla Principal esta en negro - + Save Changes to Service? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s @@ -2567,11 +2567,238 @@ The content encoding is not UTF-8. Ir al Verso + + OpenLP.ThemeManager + + + New Theme + Tema Nuevo + + + + Create a new theme. + + + + + Edit Theme + Editar Tema + + + + Edit a theme. + + + + + Delete Theme + Eliminar Tema + + + + Delete a theme. + + + + + Import Theme + Importar Tema + + + + Import a theme. + + + + + Export Theme + Exportar Tema + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete theme? + + + + + Error + Error + + + + You are unable to delete the default theme. + + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + + + + + Save Theme - (%s) + Guardar Tema - (%s) + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Select Theme Import File + Seleccione el Archivo de Tema a Importar + + + + Theme (*.*) + + + + + File is not a valid theme. +The content encoding is not UTF-8. + + + + + File is not a valid theme. + + + + + Theme Exists + Ya existe el Tema + + + + A theme with this name already exists. Would you like to overwrite it? + + + + + OpenLP.ThemesTab + + + Themes + Temas + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Utilice el tema de cada canción en la base de datos. Si una canción no tiene un tema asociado, utilizar el tema del servicio. Si el servicio no tiene un tema, utilizar el tema global. + + + + &Service Level + + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + Utilizar el tema del servicio, ignorando el tema de las canciones individuales. Si el servicio no tiene un tema, utilizar el tema global. + + + + &Global Level + + + + + Use the global theme, overriding any themes associated with either the service or the songs. + Utilice el tema global, ignorado los temas asociados con el servicio o con las canciones. + + PresentationPlugin - - <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. @@ -2583,42 +2810,42 @@ The content encoding is not UTF-8. Presentación - + Select Presentation(s) Seleccionar Presentación(es) - + Automatic - + Present using: Mostrar usando: - + File Exists - + A presentation with that filename already exists. Ya existe una presentación con ese nombre. - + Unsupported File - + This type of presentation is not supported - + You must select an item to delete. @@ -2631,16 +2858,26 @@ The content encoding is not UTF-8. Presentaciones - + Available Controllers Controladores Disponibles + + + Advanced + + + + + Allow presentation application to be overriden + + RemotePlugin - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer via a web browser or other app<br>The Primary use for this would be to send alerts from a creche + <strong>Remote Plugin</strong><br/ >The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. @@ -2669,45 +2906,45 @@ The content encoding is not UTF-8. SongUsagePlugin + + + &Song Usage Tracking + + - &Delete recorded data - &Eliminar los datos guardados - - - - Start/Stop live song usage recording - Sincronizar la canción en vivo - - - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - <b>SongUsage Plugin</b><br>Este plugin registra el uso de canciones y cuando se han utilizado durante un servicio en vivo + &Delete Tracking Data + - Delete song usage to specified date - Eliminar el historial de uso hasta la fecha especificada - - - - Generate report on Song Usage - Crear un reporte del Uso de las Canciones - - - - Song Usage Status - Estado de Uso de las Canciones + Delete song usage data up to a specified date. + - &Extract recorded data - &Extraer los datos guardados + &Extract Tracking Data + - - &Song Usage - &Uso de las Canciones + + Generate a report on song usage. + + + + + Toggle Tracking + + + + + Toggle the tracking of song usage. + + + + + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. + @@ -2861,7 +3098,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. @@ -2920,21 +3157,11 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R &Title: - - - Alt&ernate Title: - - &Lyrics: - - - &Verse Order: - - &Add @@ -3025,11 +3252,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R © - - - CCLI Number: - - Comments @@ -3140,6 +3362,21 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R This song book does not exist, do you want to add it? + + + Alt&ernate title: + + + + + &Verse order: + + + + + CCLI number: + + SongsPlugin.EditVerseForm @@ -3350,40 +3587,35 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Autores - - %s (%s) - - - - + You must select an item to edit. - + You must select an item to delete. - - - Delete song? - - - - - Delete %d songs? - - - - - Delete Confirmation - - CCLI Licence: Licencia CCLI: + + + Are you sure you want to delete the selected song? + + + + + Are you sure you want to delete the %d selected songs? + + + + + Delete Song(s)? + + SongsPlugin.SongBookForm @@ -3593,7 +3825,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - Display Verses on Live Tool bar + Display verses on live tool bar @@ -3621,247 +3853,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - Splashscreen - - - Starting - Iniciando - - - - Splash Screen - Pantalla de Bienvenida - - - - ThemeManager - - - Import Theme - Importar Tema - - - - Delete Theme - Eliminar Tema - - - - Error - Error - - - - Edit Theme - Editar Tema - - - - Export Theme - Exportar Tema - - - - Theme Exists - Ya existe el Tema - - - - Save Theme - (%s) - Guardar Tema - (%s) - - - - Select Theme Import File - Seleccione el Archivo de Tema a Importar - - - - New Theme - Tema Nuevo - - - - Create a new theme. - - - - - Edit a theme. - - - - - Delete a theme. - - - - - Import a theme. - - - - - Export a theme. - - - - - &Edit Theme - - - - - &Delete Theme - - - - - Set As &Global Default - - - - - E&xport Theme - - - - - %s (default) - - - - - You must select a theme to edit. - - - - - You must select a theme to delete. - - - - - Delete Confirmation - - - - - Delete theme? - - - - - You are unable to delete the default theme. - - - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - - - - - You have not selected a theme. - - - - - Theme Exported - - - - - Your theme has been successfully exported. - - - - - Theme Export Failed - - - - - Your theme could not be exported due to an error. - - - - - Theme (*.*) - - - - - File is not a valid theme. -The content encoding is not UTF-8. - - - - - File is not a valid theme. - - - - - A theme with this name already exists. Would you like to overwrite it? - - - - - ThemesTab - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - Utilice el tema de cada canción en la base de datos. Si una canción no tiene un tema asociado, utilizar el tema del servicio. Si el servicio no tiene un tema, utilizar el tema global. - - - - Use the global theme, overriding any themes associated with either the service or the songs. - Utilice el tema global, ignorado los temas asociados con el servicio o con las canciones. - - - - Themes - Temas - - - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - Utilizar el tema del servicio, ignorando el tema de las canciones individuales. Si el servicio no tiene un tema, utilizar el tema global. - - - - Global Theme - - - - - Theme Level - - - - - S&ong Level - - - - - &Service Level - - - - - &Global Level - - - - - VerseType + SongsPlugin.VerseType Verse diff --git a/resources/i18n/openlp_et.ts b/resources/i18n/openlp_et.ts index 62e41d62c..8a0658d97 100644 --- a/resources/i18n/openlp_et.ts +++ b/resources/i18n/openlp_et.ts @@ -8,13 +8,13 @@ - - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen + + Show an alert message. - - Show an alert message. + + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen @@ -171,7 +171,7 @@ - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. @@ -655,7 +655,7 @@ Changes do not affect verses already in the service. CustomPlugin - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> + <strong>Custom Plugin</strong><br />The custom plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. @@ -827,7 +827,7 @@ Changes do not affect verses already in the service. ImagePlugin - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. @@ -906,8 +906,8 @@ Changes do not affect verses already in the service. MediaPlugin - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - <b>Meedia plugin</b><br>See plugin võimaldab audio ja video esitamise + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + @@ -1681,409 +1681,409 @@ This General Public License does not permit incorporating your program into prop Eesti - + OpenLP 2.0 OpenLP 2.0 - + &File &Fail - + &Import &Impordi - + &Export &Ekspordi - + &View &Vaade - + M&ode &Režiim - + &Tools &Tööriistad - + &Settings &Sätted - + &Language &Keel - + &Help A&bi - + Media Manager Meediahaldur - + Service Manager Teenistuse haldur - + Theme Manager Kujunduse haldur - + &New &Uus - + New Service Uus teenistus - + Create a new service. - + Ctrl+N Ctrl+N - + &Open &Ava - + Open Service Teenistuse avamine - + Open an existing service. - + Ctrl+O Ctrl+O - + &Save &Salvesta - + Save Service Salvesta teenistus - + Save the current service to disk. - + Ctrl+S Ctrl+S - + Save &As... Salvesta &kui... - + Save Service As Salvesta teenistus kui - + Save the current service under a new name. - + Ctrl+Shift+S - + E&xit &Välju - + Quit OpenLP Lahku OpenLPst - + Alt+F4 Alt+F4 - + &Theme &Kujundus - + &Configure OpenLP... - + &Media Manager &Meediahaldur - + Toggle Media Manager Meediahalduri lüliti - + Toggle the visibility of the media manager. - + F8 F8 - + &Theme Manager &Kujunduse haldur - + Toggle Theme Manager Kujunduse halduri lüliti - + Toggle the visibility of the theme manager. - + F10 F10 - + &Service Manager &Teenistuse haldur - + Toggle Service Manager Teenistuse halduri lüliti - + Toggle the visibility of the service manager. - + F9 F9 - + &Preview Panel &Eelvaatluspaneel - + Toggle Preview Panel Eelvaatluspaneeli lüliti - + Toggle the visibility of the preview panel. - + F11 F11 - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + F12 F12 - + &Plugin List &Pluginate loend - + List the Plugins Pluginate loend - + Alt+F7 Alt+F7 - + &User Guide &Kasutajajuhend - + &About &Lähemalt - + More information about OpenLP Lähem teave OpenLP kohta - + Ctrl+F1 Ctrl+F1 - + &Online Help &Abi veebis - + &Web Site &Veebileht - + &Auto Detect &Isetuvastus - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... Lisa &tööriist... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live &Otse - + Set the view mode to Live. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from <a href="http://openlp.org/">http://openlp.org/</a>. - + OpenLP Version Updated OpenLP uuendus - + OpenLP Main Display Blanked OpenLP peakuva on tühi - + The Main Display has been blanked out Peakuva on tühi - + Save Changes to Service? Kas salvestada teenistusse tehtud muudatused? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s @@ -2600,18 +2600,245 @@ The content encoding is not UTF-8. Liikumine salmile + + OpenLP.ThemeManager + + + New Theme + Uus kujundus + + + + Create a new theme. + + + + + Edit Theme + Kujunduse muutmine + + + + Edit a theme. + + + + + Delete Theme + Teema kustutamine + + + + Delete a theme. + + + + + Import Theme + Teema importimine + + + + Import a theme. + + + + + Export Theme + Kujunduse eksportimine + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete theme? + + + + + Error + Viga + + + + You are unable to delete the default theme. + Vaikimisi kujundust pole võimalik kustutada. + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + Sa ei ole teemat valinud. + + + + Save Theme - (%s) + Salvesta kujundus - (%s) + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Select Theme Import File + Importimiseks kujunduse faili valimine + + + + Theme (*.*) + + + + + File is not a valid theme. +The content encoding is not UTF-8. + + + + + File is not a valid theme. + See fail ei ole sobilik kujundus. + + + + Theme Exists + Kujundus on juba olemas + + + + A theme with this name already exists. Would you like to overwrite it? + + + + + OpenLP.ThemesTab + + + Themes + Kujundused + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Iga laulu jaoks kasutatakse andmebaasis sellele määratud kujundust. Kui laulul kujundus puudub, kasutatakse teenistuse teemat. Kui teenistusel kujundus puudub, siis kasutatakse üleüldist teemat. + + + + &Service Level + + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + Kasutatakse teenistuse kujundust, eirates laulude kujundusi. Kui teenistusel kujundust pole, kasutatakse globaalset. + + + + &Global Level + + + + + Use the global theme, overriding any themes associated with either the service or the songs. + Kasutatakse globaalset kujundust, eirates nii teenistuse kui laulu kujundust. + + PresentationPlugin - - <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. PresentationPlugin.MediaItem - + Present using: @@ -2621,37 +2848,37 @@ The content encoding is not UTF-8. - + Select Presentation(s) - + Automatic - + A presentation with that filename already exists. - + You must select an item to delete. - + This type of presentation is not supported - + File Exists - + Unsupported File @@ -2664,16 +2891,26 @@ The content encoding is not UTF-8. - + Available Controllers + + + Advanced + + + + + Allow presentation application to be overriden + + RemotePlugin - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer via a web browser or other app<br>The Primary use for this would be to send alerts from a creche + <strong>Remote Plugin</strong><br/ >The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. @@ -2704,42 +2941,42 @@ The content encoding is not UTF-8. SongUsagePlugin - &Song Usage + &Song Usage Tracking - &Delete recorded data + &Delete Tracking Data - Delete song usage to specified date + Delete song usage data up to a specified date. - &Extract recorded data + &Extract Tracking Data - Generate report on Song Usage + Generate a report on song usage. - - Song Usage Status + + Toggle Tracking - - Start/Stop live song usage recording + + Toggle the tracking of song usage. - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service + + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. @@ -2842,11 +3079,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Open documents or presentations - - - <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. - - OpenSong (temp menu item) @@ -2897,6 +3129,11 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Error importing OpenLP v2 database(s) + + + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + SongsPlugin.AuthorsForm @@ -2958,11 +3195,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R &Lyrics: - - - &Verse Order: - - &Add @@ -3033,11 +3265,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Copyright Information Autoriõiguse andmed - - - CCLI Number: - CCLI number: - Comments @@ -3103,11 +3330,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - - - Alt&ernate Title: - - New &Theme @@ -3173,6 +3395,21 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R This topic is already in the list. + + + Alt&ernate title: + + + + + &Verse order: + + + + + CCLI number: + + SongsPlugin.EditVerseForm @@ -3377,16 +3614,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Authors - - - %s (%s) - - - - - Delete Confirmation - - CCLI Licence: @@ -3398,23 +3625,28 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + You must select an item to edit. - + You must select an item to delete. - Delete song? + Are you sure you want to delete the selected song? - Delete %d songs? + Are you sure you want to delete the %d selected songs? + + + + + Delete Song(s)? @@ -3626,7 +3858,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - Display Verses on Live Tool bar + Display verses on live tool bar @@ -3654,247 +3886,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - Splashscreen - - - Starting - Käivitumine - - - - Splash Screen - Käivitusekraan - - - - ThemeManager - - - Import Theme - Teema importimine - - - - Delete Theme - Teema kustutamine - - - - Error - Viga - - - - Edit Theme - Kujunduse muutmine - - - - Export Theme - Kujunduse eksportimine - - - - You are unable to delete the default theme. - Vaikimisi kujundust pole võimalik kustutada. - - - - File is not a valid theme. - See fail ei ole sobilik kujundus. - - - - Theme Exists - Kujundus on juba olemas - - - - Save Theme - (%s) - Salvesta kujundus - (%s) - - - - Select Theme Import File - Importimiseks kujunduse faili valimine - - - - New Theme - Uus kujundus - - - - You have not selected a theme. - Sa ei ole teemat valinud. - - - - Create a new theme. - - - - - Edit a theme. - - - - - Delete a theme. - - - - - Import a theme. - - - - - Export a theme. - - - - - &Edit Theme - - - - - &Delete Theme - - - - - Set As &Global Default - - - - - E&xport Theme - - - - - %s (default) - - - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - - - - - Theme Exported - - - - - Your theme has been successfully exported. - - - - - Theme Export Failed - - - - - Your theme could not be exported due to an error. - - - - - Theme (*.*) - - - - - File is not a valid theme. -The content encoding is not UTF-8. - - - - - You must select a theme to edit. - - - - - You must select a theme to delete. - - - - - Delete Confirmation - - - - - Delete theme? - - - - - A theme with this name already exists. Would you like to overwrite it? - - - - - ThemesTab - - - Use the global theme, overriding any themes associated with either the service or the songs. - Kasutatakse globaalset kujundust, eirates nii teenistuse kui laulu kujundust. - - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - Iga laulu jaoks kasutatakse andmebaasis sellele määratud kujundust. Kui laulul kujundus puudub, kasutatakse teenistuse teemat. Kui teenistusel kujundus puudub, siis kasutatakse üleüldist teemat. - - - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - Kasutatakse teenistuse kujundust, eirates laulude kujundusi. Kui teenistusel kujundust pole, kasutatakse globaalset. - - - - Themes - Kujundused - - - - Global Theme - - - - - Theme Level - - - - - S&ong Level - - - - - &Service Level - - - - - &Global Level - - - - - VerseType + SongsPlugin.VerseType Verse diff --git a/resources/i18n/openlp_hu.ts b/resources/i18n/openlp_hu.ts index 20726dd9c..1ed312f74 100644 --- a/resources/i18n/openlp_hu.ts +++ b/resources/i18n/openlp_hu.ts @@ -14,8 +14,8 @@ - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - <b>Figyelmeztető bővítmény</b><br/>Ez a bővítmény kezeli a vetítőn megjelenő figyelmeztetéseket + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen + @@ -171,8 +171,8 @@ - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - <strong>Biblia bővítmény</strong><br />Ez a bővítmény különféle igehelyek vetítését teszi lehetővé a szolgálat alatt. + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + @@ -655,8 +655,8 @@ Changes do not affect verses already in the service. CustomPlugin - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> - <b>Egyedi bővítmény</b><br/>Ez a bővítmény dalokhoz hasonló diák vetítését teszi lehetővé. Ugyanakkor több szabadságot enged meg, mint a dalok bővítmény + <strong>Custom Plugin</strong><br />The custom plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. + @@ -827,7 +827,7 @@ Changes do not affect verses already in the service. ImagePlugin - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. @@ -906,8 +906,8 @@ Changes do not affect verses already in the service. MediaPlugin - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - <b>Média bővítmény</b><br />Ez a bővítmény hangok és videók lejátszását teszi lehetővé + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + @@ -1803,7 +1803,7 @@ A GNU General Public License nem engedi meg, hogy a program része legyen szelle OpenLP.MainWindow - + OpenLP 2.0 @@ -1813,404 +1813,404 @@ A GNU General Public License nem engedi meg, hogy a program része legyen szelle Magyar - + &File &Fájl - + &Import &Importálás - + &Export &Exportálás - + &View &Nézet - + M&ode &Mód - + &Tools &Eszközök - + &Settings &Beállítások - + &Language &Nyelv - + &Help &Súgó - + Media Manager Médiakezelő - + Service Manager Szolgálatkezelő - + Theme Manager Témakezelő - + &New &Új - + New Service Új szolgálat - + Create a new service. - + Ctrl+N - + &Open &Megnyitás - + Open Service Szolgálat megnyitása - + Open an existing service. - + Ctrl+O - + &Save - + Save Service Szolgálat mentése - + Save the current service to disk. - + Ctrl+S - + Save &As... Mentés má&sként... - + Save Service As Szolgálat mentése másként - + Save the current service under a new name. - + Ctrl+Shift+S - + E&xit &Kilépés - + Quit OpenLP OpenLP bezárása - + Alt+F4 - + &Theme &Téma - + &Configure OpenLP... - + &Media Manager &Médiakezelő - + Toggle Media Manager Médiakezelő átváltása - + Toggle the visibility of the media manager. - + F8 - + &Theme Manager &Témakezelő - + Toggle Theme Manager Témakezelő átváltása - + Toggle the visibility of the theme manager. - + F10 - + &Service Manager &Szolgálatkezelő - + Toggle Service Manager Szolgálatkezelő átváltása - + Toggle the visibility of the service manager. - + F9 - + &Preview Panel &Előnézet panel - + Toggle Preview Panel Előnézet panel átváltása - + Toggle the visibility of the preview panel. - + F11 - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + F12 - + &Plugin List &Bővítménylista - + List the Plugins Bővítmények listája - + Alt+F7 - + &User Guide &Felhasználói kézikönyv - + &About &Névjegy - + More information about OpenLP Több információ az OpenLP-ről - + Ctrl+F1 - + &Online Help &Online súgó - + &Web Site &Weboldal - + &Auto Detect &Automatikus felismerés - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... &Eszköz hozzáadása... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live &Egyenes adás - + Set the view mode to Live. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from <a href="http://openlp.org/">http://openlp.org/</a>. - + OpenLP Version Updated OpenLP verziófrissítés - + OpenLP Main Display Blanked Sötét OpenLP fő képernyő - + The Main Display has been blanked out A fő képernyő el lett sötétítve - + Save Changes to Service? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s @@ -2727,12 +2727,239 @@ The content encoding is not UTF-8. Ugrás versszakra + + OpenLP.ThemeManager + + + New Theme + Új téma + + + + Create a new theme. + + + + + Edit Theme + Téma szerkesztése + + + + Edit a theme. + + + + + Delete Theme + Téma törlése + + + + Delete a theme. + + + + + Import Theme + Téma importálása + + + + Import a theme. + + + + + Export Theme + Téma exportálása + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + Delete Confirmation + Törlés megerősítése + + + + Delete theme? + + + + + Error + Hiba + + + + You are unable to delete the default theme. + Az alapértelmezett témát nem lehet törölni. + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + Nincs kiválasztva egy téma sem. + + + + Save Theme - (%s) + Téma mentése – (%s) + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Select Theme Import File + Importálandó téma fájl kiválasztása + + + + Theme (*.*) + + + + + File is not a valid theme. +The content encoding is not UTF-8. + + + + + File is not a valid theme. + Nem érvényes témafájl. + + + + Theme Exists + A téma már létezik + + + + A theme with this name already exists. Would you like to overwrite it? + + + + + OpenLP.ThemesTab + + + Themes + Témák + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Minden dalra az adatbázisban tárolt téma alkalmazása. Ha egy dalhoz nincs saját téma beállítva, akkor a szolgálathoz beállított használata. Ha a szolgálathoz sincs téma beállítva, akkor a globális téma alkalmazása. + + + + &Service Level + + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + A szolgálathoz beállított téma alkalmazása, vagyis az egyes dalokhoz megadott témák felülírása. Ha a szolgálathoz nincs téma beállítva, akkor a globális téma alkalmazása. + + + + &Global Level + + + + + Use the global theme, overriding any themes associated with either the service or the songs. + A globális téma alkalmazása, vagyis a szolgálathoz, ill. a dalokhoz beállított témák felülírása. + + PresentationPlugin - - <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - <b>Bemutató bővítmény</b><br />Különböző külső programok segítségével bemutatók megjelenítését teszi lehetővé. A prezentációs programok egy listából választhatók ki. + + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + @@ -2743,42 +2970,42 @@ The content encoding is not UTF-8. Bemutató - + Select Presentation(s) Bemutató(k) kiválasztása - + Automatic Automatikus - + Present using: Bemutató ezzel: - + File Exists - + A presentation with that filename already exists. Ilyen fájlnéven már létezik egy bemutató. - + Unsupported File - + This type of presentation is not supported - + You must select an item to delete. @@ -2791,17 +3018,27 @@ The content encoding is not UTF-8. Bemutatók - + Available Controllers Elérhető vezérlők + + + Advanced + + + + + Allow presentation application to be overriden + + RemotePlugin - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer via a web browser or other app<br>The Primary use for this would be to send alerts from a creche - <b>Távvezérlő bővítmény</b><br/>Ez a bővítmény egy böngésző vagy más alkalmazás segítségével lehetővé teszi egy másik számítógépen futó OpenLP irányítását.<br/>Az elsődleges felhasználási terület egy programösszeomlás jelentése + <strong>Remote Plugin</strong><br/ >The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. + @@ -2829,45 +3066,45 @@ The content encoding is not UTF-8. SongUsagePlugin - - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - <b>Dalstatisztika bővítmény</b><br />Ez a bővítmény rögzíti, hogy a dalok mikor lettek vetítve egy élő szolgálat során - - &Song Usage - Dal&statisztika + &Song Usage Tracking + - &Delete recorded data - Mentett adatok &törlése + &Delete Tracking Data + - Delete song usage to specified date - Dalstatisztika törlése a megadott dátumig + Delete song usage data up to a specified date. + - &Extract recorded data - Mentett adatok &kibontása + &Extract Tracking Data + - Generate report on Song Usage - Jelentés készítése a dalstatisztikából + Generate a report on song usage. + - - Song Usage Status - Dalstatisztika állapota + + Toggle Tracking + - - Start/Stop live song usage recording - Élő dalstatisztika rögzítésének indítása/leállítása + + Toggle the tracking of song usage. + + + + + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. + @@ -2928,11 +3165,6 @@ The content encoding is not UTF-8. Open documents or presentations Dokumentum vagy bemutató megnyitása - - - <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. - <strong>Dal bővítmény</strong> <br />Ez a a bővítmény dalok kezelését és vetítését teszi lehetővé. - &Song @@ -3024,6 +3256,11 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Error importing OpenLP v2 database(s) + + + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. + + SongsPlugin.AuthorsForm @@ -3080,21 +3317,11 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R &Title: - - - Alt&ernate Title: - - &Lyrics: - - - &Verse Order: - - &Add @@ -3185,11 +3412,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R © - - - CCLI Number: - CCLI szám: - Comments @@ -3300,6 +3522,21 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R This song book does not exist, do you want to add it? + + + Alt&ernate title: + + + + + &Verse order: + + + + + CCLI number: + + SongsPlugin.EditVerseForm @@ -3510,40 +3747,35 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Szerzők - - %s (%s) - - - - + You must select an item to edit. - + You must select an item to delete. - - - Delete song? - Valóban törölhető a dal? - - - - Delete %d songs? - Valóban törölhetők a dalok: %d? - - - - Delete Confirmation - Törlés megerősítése - CCLI Licence: CCLI licenc: + + + Are you sure you want to delete the selected song? + + + + + Are you sure you want to delete the %d selected songs? + + + + + Delete Song(s)? + + SongsPlugin.SongBookForm @@ -3753,8 +3985,8 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - Display Verses on Live Tool bar - Versszakok megjelenítése az egyenes adás eszközön + Display verses on live tool bar + @@ -3781,247 +4013,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - Splashscreen - - - Starting - Indítás - - - - Splash Screen - Indítóképernyő - - - - ThemeManager - - - Import Theme - Téma importálása - - - - Delete Theme - Téma törlése - - - - Error - Hiba - - - - Edit Theme - Téma szerkesztése - - - - Export Theme - Téma exportálása - - - - Theme Exists - A téma már létezik - - - - Save Theme - (%s) - Téma mentése – (%s) - - - - Select Theme Import File - Importálandó téma fájl kiválasztása - - - - New Theme - Új téma - - - - You are unable to delete the default theme. - Az alapértelmezett témát nem lehet törölni. - - - - You have not selected a theme. - Nincs kiválasztva egy téma sem. - - - - File is not a valid theme. - Nem érvényes témafájl. - - - - Create a new theme. - - - - - Edit a theme. - - - - - Delete a theme. - - - - - Import a theme. - - - - - Export a theme. - - - - - &Edit Theme - - - - - &Delete Theme - - - - - Set As &Global Default - - - - - E&xport Theme - - - - - %s (default) - - - - - You must select a theme to edit. - - - - - You must select a theme to delete. - - - - - Delete Confirmation - Törlés megerősítése - - - - Delete theme? - - - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - - - - - Theme Exported - - - - - Your theme has been successfully exported. - - - - - Theme Export Failed - - - - - Your theme could not be exported due to an error. - - - - - Theme (*.*) - - - - - File is not a valid theme. -The content encoding is not UTF-8. - - - - - A theme with this name already exists. Would you like to overwrite it? - - - - - ThemesTab - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - Minden dalra az adatbázisban tárolt téma alkalmazása. Ha egy dalhoz nincs saját téma beállítva, akkor a szolgálathoz beállított használata. Ha a szolgálathoz sincs téma beállítva, akkor a globális téma alkalmazása. - - - - Use the global theme, overriding any themes associated with either the service or the songs. - A globális téma alkalmazása, vagyis a szolgálathoz, ill. a dalokhoz beállított témák felülírása. - - - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - A szolgálathoz beállított téma alkalmazása, vagyis az egyes dalokhoz megadott témák felülírása. Ha a szolgálathoz nincs téma beállítva, akkor a globális téma alkalmazása. - - - - Themes - Témák - - - - Global Theme - - - - - Theme Level - - - - - S&ong Level - - - - - &Service Level - - - - - &Global Level - - - - - VerseType + SongsPlugin.VerseType Verse diff --git a/resources/i18n/openlp_ko.ts b/resources/i18n/openlp_ko.ts index ffc318731..31143d07a 100644 --- a/resources/i18n/openlp_ko.ts +++ b/resources/i18n/openlp_ko.ts @@ -14,7 +14,7 @@ - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen @@ -171,7 +171,7 @@ - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. @@ -655,7 +655,7 @@ Changes do not affect verses already in the service. CustomPlugin - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> + <strong>Custom Plugin</strong><br />The custom plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. @@ -827,7 +827,7 @@ Changes do not affect verses already in the service. ImagePlugin - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. @@ -906,7 +906,7 @@ Changes do not affect verses already in the service. MediaPlugin - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. @@ -1643,7 +1643,7 @@ This General Public License does not permit incorporating your program into prop OpenLP.MainWindow - + OpenLP 2.0 @@ -1653,404 +1653,404 @@ This General Public License does not permit incorporating your program into prop - + &File - + &Import - + &Export - + &View - + M&ode - + &Tools - + &Settings - + &Language - + &Help - + Media Manager - + Service Manager - + Theme Manager - + &New - + New Service - + Create a new service. - + Ctrl+N - + &Open - + Open Service - + Open an existing service. - + Ctrl+O - + &Save - + Save Service - + Save the current service to disk. - + Ctrl+S - + Save &As... - + Save Service As - + Save the current service under a new name. - + Ctrl+Shift+S - + E&xit - + Quit OpenLP - + Alt+F4 - + &Theme - + &Configure OpenLP... - + &Media Manager - + Toggle Media Manager - + Toggle the visibility of the media manager. - + F8 - + &Theme Manager - + Toggle Theme Manager - + Toggle the visibility of the theme manager. - + F10 - + &Service Manager - + Toggle Service Manager - + Toggle the visibility of the service manager. - + F9 - + &Preview Panel - + Toggle Preview Panel - + Toggle the visibility of the preview panel. - + F11 - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + F12 - + &Plugin List - + List the Plugins - + Alt+F7 - + &User Guide - + &About - + More information about OpenLP - + Ctrl+F1 - + &Online Help - + &Web Site - + &Auto Detect - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live - + Set the view mode to Live. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from <a href="http://openlp.org/">http://openlp.org/</a>. - + OpenLP Version Updated - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Save Changes to Service? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s @@ -2567,11 +2567,238 @@ The content encoding is not UTF-8. + + OpenLP.ThemeManager + + + New Theme + + + + + Create a new theme. + + + + + Edit Theme + + + + + Edit a theme. + + + + + Delete Theme + + + + + Delete a theme. + + + + + Import Theme + + + + + Import a theme. + + + + + Export Theme + + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete theme? + + + + + Error + + + + + You are unable to delete the default theme. + + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + + + + + Save Theme - (%s) + + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Select Theme Import File + + + + + Theme (*.*) + + + + + File is not a valid theme. +The content encoding is not UTF-8. + + + + + File is not a valid theme. + + + + + Theme Exists + + + + + A theme with this name already exists. Would you like to overwrite it? + + + + + OpenLP.ThemesTab + + + Themes + + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + + + + + &Service Level + + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + + + + + &Global Level + + + + + Use the global theme, overriding any themes associated with either the service or the songs. + + + PresentationPlugin - - <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. @@ -2583,42 +2810,42 @@ The content encoding is not UTF-8. - + Select Presentation(s) - + Automatic - + Present using: - + File Exists - + A presentation with that filename already exists. - + Unsupported File - + This type of presentation is not supported - + You must select an item to delete. @@ -2631,16 +2858,26 @@ The content encoding is not UTF-8. - + Available Controllers + + + Advanced + + + + + Allow presentation application to be overriden + + RemotePlugin - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer via a web browser or other app<br>The Primary use for this would be to send alerts from a creche + <strong>Remote Plugin</strong><br/ >The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. @@ -2669,44 +2906,44 @@ The content encoding is not UTF-8. SongUsagePlugin + + + &Song Usage Tracking + + - &Delete recorded data - - - - - Start/Stop live song usage recording - - - - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service + &Delete Tracking Data - Delete song usage to specified date - - - - - Generate report on Song Usage - - - - - Song Usage Status + Delete song usage data up to a specified date. - &Extract recorded data + &Extract Tracking Data - - &Song Usage + + Generate a report on song usage. + + + + + Toggle Tracking + + + + + Toggle the tracking of song usage. + + + + + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. @@ -2861,7 +3098,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. @@ -2920,21 +3157,11 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R &Title: - - - Alt&ernate Title: - - &Lyrics: - - - &Verse Order: - - &Add @@ -3025,11 +3252,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R © - - - CCLI Number: - - Comments @@ -3140,6 +3362,21 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R This song book does not exist, do you want to add it? + + + Alt&ernate title: + + + + + &Verse order: + + + + + CCLI number: + + SongsPlugin.EditVerseForm @@ -3350,40 +3587,35 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - - %s (%s) - - - - + You must select an item to edit. - + You must select an item to delete. - - - Delete song? - - - - - Delete %d songs? - - - - - Delete Confirmation - - CCLI Licence: + + + Are you sure you want to delete the selected song? + + + + + Are you sure you want to delete the %d selected songs? + + + + + Delete Song(s)? + + SongsPlugin.SongBookForm @@ -3593,7 +3825,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - Display Verses on Live Tool bar + Display verses on live tool bar @@ -3621,247 +3853,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - Splashscreen - - - Starting - - - - - Splash Screen - - - - - ThemeManager - - - Import Theme - - - - - Delete Theme - - - - - Error - - - - - File is not a valid theme. - - - - - Edit Theme - - - - - Export Theme - - - - - You are unable to delete the default theme. - - - - - Theme Exists - - - - - Save Theme - (%s) - - - - - Select Theme Import File - - - - - New Theme - - - - - You have not selected a theme. - - - - - Create a new theme. - - - - - Edit a theme. - - - - - Delete a theme. - - - - - Import a theme. - - - - - Export a theme. - - - - - &Edit Theme - - - - - &Delete Theme - - - - - Set As &Global Default - - - - - E&xport Theme - - - - - %s (default) - - - - - You must select a theme to edit. - - - - - You must select a theme to delete. - - - - - Delete Confirmation - - - - - Delete theme? - - - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - - - - - Theme Exported - - - - - Your theme has been successfully exported. - - - - - Theme Export Failed - - - - - Your theme could not be exported due to an error. - - - - - Theme (*.*) - - - - - File is not a valid theme. -The content encoding is not UTF-8. - - - - - A theme with this name already exists. Would you like to overwrite it? - - - - - ThemesTab - - - Use the global theme, overriding any themes associated with either the service or the songs. - - - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - - - - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - - - - - Themes - - - - - Global Theme - - - - - Theme Level - - - - - S&ong Level - - - - - &Service Level - - - - - &Global Level - - - - - VerseType + SongsPlugin.VerseType Verse diff --git a/resources/i18n/openlp_nb.ts b/resources/i18n/openlp_nb.ts index 169ba4a82..d3f213fab 100644 --- a/resources/i18n/openlp_nb.ts +++ b/resources/i18n/openlp_nb.ts @@ -14,7 +14,7 @@ - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen @@ -171,8 +171,8 @@ - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - <strong>Bibel-tillegg</strong><br /> Dette tillegget gjør det mulig at bibelvers fra ulike kilder vises på skjermen under møtet. + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + @@ -655,7 +655,7 @@ Changes do not affect verses already in the service. CustomPlugin - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> + <strong>Custom Plugin</strong><br />The custom plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. @@ -827,7 +827,7 @@ Changes do not affect verses already in the service. ImagePlugin - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. @@ -906,8 +906,8 @@ Changes do not affect verses already in the service. MediaPlugin - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - <b>Media-tillegg</b><br> Dette tillegget spiller av lyd og video. + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + @@ -1643,7 +1643,7 @@ This General Public License does not permit incorporating your program into prop OpenLP.MainWindow - + OpenLP 2.0 OpenLP 2.0 @@ -1653,404 +1653,404 @@ This General Public License does not permit incorporating your program into prop Norsk - + &File &Fil - + &Import &Import - + &Export &Eksporter - + &View &Vis - + M&ode - + &Tools - + &Settings &Innstillinger - + &Language &Språk - + &Help &Hjelp - + Media Manager Innholdselementer - + Service Manager - + Theme Manager - + &New &Ny - + New Service - + Create a new service. - + Ctrl+N Ctrl+N - + &Open &Åpne - + Open Service Åpne møteplan - + Open an existing service. - + Ctrl+O Ctrl+O - + &Save &Lagre - + Save Service - + Save the current service to disk. - + Ctrl+S Ctrl+S - + Save &As... - + Save Service As - + Save the current service under a new name. - + Ctrl+Shift+S - + E&xit &Avslutt - + Quit OpenLP Avslutt OpenLP - + Alt+F4 Alt+F4 - + &Theme &Tema - + &Configure OpenLP... - + &Media Manager - + Toggle Media Manager - + Toggle the visibility of the media manager. - + F8 F8 - + &Theme Manager - + Toggle Theme Manager Åpne tema-behandler - + Toggle the visibility of the theme manager. - + F10 F10 - + &Service Manager - + Toggle Service Manager Vis møteplanlegger - + Toggle the visibility of the service manager. - + F9 F9 - + &Preview Panel &Forhåndsvisningspanel - + Toggle Preview Panel Vis forhåndsvisningspanel - + Toggle the visibility of the preview panel. - + F11 F11 - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + F12 F12 - + &Plugin List &Tillegsliste - + List the Plugins Hent liste over tillegg - + Alt+F7 ALT+F7 - + &User Guide &Brukerveiledning - + &About &Om - + More information about OpenLP - + Ctrl+F1 Ctrl+F1 - + &Online Help - + &Web Site &Internett side - + &Auto Detect - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... Legg til & Verktøy... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live &Direkte - + Set the view mode to Live. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from <a href="http://openlp.org/">http://openlp.org/</a>. - + OpenLP Version Updated OpenLP versjonen har blitt oppdatert - + OpenLP Main Display Blanked - + The Main Display has been blanked out - + Save Changes to Service? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s @@ -2567,12 +2567,239 @@ The content encoding is not UTF-8. Gå til vers + + OpenLP.ThemeManager + + + New Theme + + + + + Create a new theme. + + + + + Edit Theme + Endre tema + + + + Edit a theme. + + + + + Delete Theme + Slett tema + + + + Delete a theme. + + + + + Import Theme + Importer tema + + + + Import a theme. + + + + + Export Theme + Eksporter tema + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete theme? + + + + + Error + Feil + + + + You are unable to delete the default theme. + Du kan ikke slette det globale temaet + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + + + + + Save Theme - (%s) + + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Select Theme Import File + + + + + Theme (*.*) + + + + + File is not a valid theme. +The content encoding is not UTF-8. + + + + + File is not a valid theme. + Filen er ikke et gyldig tema. + + + + Theme Exists + Temaet eksisterer + + + + A theme with this name already exists. Would you like to overwrite it? + + + + + OpenLP.ThemesTab + + + Themes + Tema + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Bruk temaet fra hver sang i databasen. Hvis en sang ikke er tilknyttet et tema, bruk temaet til møteplanen. Hvis møteplanen ikke har et tema, bruk det globale temaet. + + + + &Service Level + + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + + + + + &Global Level + + + + + Use the global theme, overriding any themes associated with either the service or the songs. + Bruk det globale temaet, og la det overstyre eventuelle tema som er tilknyttet møteplaner eller sanger. + + PresentationPlugin - - <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - <b>Presentasjonstillegg</b> <br> Gir deg mulighet til å vise presentasjoner ved hjelp av en rekke ulike programmer. Programmene som er tilgjengelige finner du i rullemenyen. + + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + @@ -2583,42 +2810,42 @@ The content encoding is not UTF-8. Presentasjon - + Select Presentation(s) Velg presentasjon(er) - + Automatic Automatisk - + Present using: Presenter ved hjelp av: - + File Exists - + A presentation with that filename already exists. - + Unsupported File - + This type of presentation is not supported - + You must select an item to delete. @@ -2631,16 +2858,26 @@ The content encoding is not UTF-8. - + Available Controllers + + + Advanced + + + + + Allow presentation application to be overriden + + RemotePlugin - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer via a web browser or other app<br>The Primary use for this would be to send alerts from a creche + <strong>Remote Plugin</strong><br/ >The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. @@ -2670,43 +2907,43 @@ The content encoding is not UTF-8. SongUsagePlugin - - &Delete recorded data - &Slett lagret data - - - - Start/Stop live song usage recording + + &Song Usage Tracking - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service + + &Delete Tracking Data - Delete song usage to specified date - Slett data angående sangbruk frem til angitt dato - - - - Generate report on Song Usage - Lag rapport angående bruk av sanger - - - - Song Usage Status + Delete song usage data up to a specified date. - &Extract recorded data + &Extract Tracking Data - - &Song Usage + + Generate a report on song usage. + + + + + Toggle Tracking + + + + + Toggle the tracking of song usage. + + + + + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. @@ -2861,7 +3098,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. @@ -2920,21 +3157,11 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R &Title: - - - Alt&ernate Title: - - &Lyrics: - - - &Verse Order: - - &Add @@ -3025,11 +3252,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R © - - - CCLI Number: - - Comments @@ -3140,6 +3362,21 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R This song book does not exist, do you want to add it? + + + Alt&ernate title: + + + + + &Verse order: + + + + + CCLI number: + + SongsPlugin.EditVerseForm @@ -3350,40 +3587,35 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - - %s (%s) - - - - + You must select an item to edit. - + You must select an item to delete. - - - Delete song? - - - - - Delete %d songs? - - - - - Delete Confirmation - - CCLI Licence: CCLI lisens: + + + Are you sure you want to delete the selected song? + + + + + Are you sure you want to delete the %d selected songs? + + + + + Delete Song(s)? + + SongsPlugin.SongBookForm @@ -3593,7 +3825,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - Display Verses on Live Tool bar + Display verses on live tool bar @@ -3621,247 +3853,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - Splashscreen - - - Starting - - - - - Splash Screen - - - - - ThemeManager - - - Import Theme - Importer tema - - - - Delete Theme - Slett tema - - - - Error - Feil - - - - Edit Theme - Endre tema - - - - Export Theme - Eksporter tema - - - - You are unable to delete the default theme. - Du kan ikke slette det globale temaet - - - - File is not a valid theme. - Filen er ikke et gyldig tema. - - - - Theme Exists - Temaet eksisterer - - - - Save Theme - (%s) - - - - - Select Theme Import File - - - - - New Theme - - - - - You have not selected a theme. - - - - - Create a new theme. - - - - - Edit a theme. - - - - - Delete a theme. - - - - - Import a theme. - - - - - Export a theme. - - - - - &Edit Theme - - - - - &Delete Theme - - - - - Set As &Global Default - - - - - E&xport Theme - - - - - %s (default) - - - - - You must select a theme to edit. - - - - - You must select a theme to delete. - - - - - Delete Confirmation - - - - - Delete theme? - - - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - - - - - Theme Exported - - - - - Your theme has been successfully exported. - - - - - Theme Export Failed - - - - - Your theme could not be exported due to an error. - - - - - Theme (*.*) - - - - - File is not a valid theme. -The content encoding is not UTF-8. - - - - - A theme with this name already exists. Would you like to overwrite it? - - - - - ThemesTab - - - Use the global theme, overriding any themes associated with either the service or the songs. - Bruk det globale temaet, og la det overstyre eventuelle tema som er tilknyttet møteplaner eller sanger. - - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - Bruk temaet fra hver sang i databasen. Hvis en sang ikke er tilknyttet et tema, bruk temaet til møteplanen. Hvis møteplanen ikke har et tema, bruk det globale temaet. - - - - Themes - Tema - - - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - - - - - Global Theme - - - - - Theme Level - - - - - S&ong Level - - - - - &Service Level - - - - - &Global Level - - - - - VerseType + SongsPlugin.VerseType Verse diff --git a/resources/i18n/openlp_pt_BR.ts b/resources/i18n/openlp_pt_BR.ts index 0e86efcac..3d77dc6e8 100644 --- a/resources/i18n/openlp_pt_BR.ts +++ b/resources/i18n/openlp_pt_BR.ts @@ -14,8 +14,8 @@ - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - <b>Plugin de Alertas</b><br>Este plugin controla a exibição de alertas na tela de apresentação + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen + @@ -171,8 +171,8 @@ - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - <strong>Plugin da Bíblia</strong>Este plugin permite exibir na tela versículos bíblicos de diferentes versões durante o culto. + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + @@ -655,7 +655,7 @@ Changes do not affect verses already in the service. CustomPlugin - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> + <strong>Custom Plugin</strong><br />The custom plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. @@ -827,7 +827,7 @@ Changes do not affect verses already in the service. ImagePlugin - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. @@ -906,8 +906,8 @@ Changes do not affect verses already in the service. MediaPlugin - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - <br>Plugin de Mídia</b><br>Este plugin permite a execução de audio e vídeo + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + @@ -1643,7 +1643,7 @@ This General Public License does not permit incorporating your program into prop OpenLP.MainWindow - + OpenLP 2.0 OpenLP 2.0 @@ -1653,404 +1653,404 @@ This General Public License does not permit incorporating your program into prop Inglês - + &File &Arquivo - + &Import &Importar - + &Export &Exportar - + &View &Visualizar - + M&ode M&odo - + &Tools &Ferramentas - + &Settings &Configurações - + &Language &Idioma - + &Help &Ajuda - + Media Manager Gerenciador de Mídia - + Service Manager Gerenciador de Culto - + Theme Manager Gerenciador de Temas - + &New &Novo - + New Service Novo Culto - + Create a new service. - + Ctrl+N Ctrl+N - + &Open &Abrir - + Open Service - + Open an existing service. - + Ctrl+O Ctrl+O - + &Save &Salvar - + Save Service Salvar Culto - + Save the current service to disk. - + Ctrl+S Ctrl+S - + Save &As... Salvar &Como... - + Save Service As Salvar Culto Como - + Save the current service under a new name. - + Ctrl+Shift+S - + E&xit S&air - + Quit OpenLP Fechar o OpenLP - + Alt+F4 Alt+F4 - + &Theme &Tema - + &Configure OpenLP... - + &Media Manager &Gerenciador de Mídia - + Toggle Media Manager Alternar Gerenciador de Mídia - + Toggle the visibility of the media manager. - + F8 F8 - + &Theme Manager &Gerenciador de Temas - + Toggle Theme Manager Alternar para Gerenciamento de Temas - + Toggle the visibility of the theme manager. - + F10 F10 - + &Service Manager &Gerenciador de Culto - + Toggle Service Manager Alternar para o Gerenciador de Cultos - + Toggle the visibility of the service manager. - + F9 F9 - + &Preview Panel &Painel de Pré-Visualização - + Toggle Preview Panel Alternar para Painel de Pré-Visualização - + Toggle the visibility of the preview panel. - + F11 F11 - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + F12 F12 - + &Plugin List &Lista de Plugin - + List the Plugins Listar os Plugins - + Alt+F7 Alt+F7 - + &User Guide &Guia do Usuário - + &About &Sobre - + More information about OpenLP Mais informações sobre o OpenLP - + Ctrl+F1 Ctrl+F1 - + &Online Help &Ajuda Online - + &Web Site &Web Site - + &Auto Detect - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live &Ao Vivo - + Set the view mode to Live. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from <a href="http://openlp.org/">http://openlp.org/</a>. - + OpenLP Version Updated Versão do OpenLP Atualizada - + OpenLP Main Display Blanked Tela Principal do OpenLP em Branco - + The Main Display has been blanked out A Tela Principal foi apagada - + Save Changes to Service? Salvar Mudanças no Culto? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s @@ -2567,11 +2567,238 @@ The content encoding is not UTF-8. Ir ao Versículo + + OpenLP.ThemeManager + + + New Theme + Novo Tema + + + + Create a new theme. + + + + + Edit Theme + Editar Tema + + + + Edit a theme. + + + + + Delete Theme + Deletar Tema + + + + Delete a theme. + + + + + Import Theme + Importar Tema + + + + Import a theme. + + + + + Export Theme + Exportar Tema + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete theme? + + + + + Error + Erro + + + + You are unable to delete the default theme. + + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + + + + + Save Theme - (%s) + Salvar Tema - (%s) + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Select Theme Import File + Selecionar Arquivo de Importação de Tema + + + + Theme (*.*) + + + + + File is not a valid theme. +The content encoding is not UTF-8. + + + + + File is not a valid theme. + + + + + Theme Exists + Tema Existe + + + + A theme with this name already exists. Would you like to overwrite it? + + + + + OpenLP.ThemesTab + + + Themes + Temas + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Use o tema de cada música na base de dados. Se uma música não tiver um tema associado com ela, então use o tema do culto. Se o culto não tiver um tema, então use o tema global. + + + + &Service Level + + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + Usar o tema do culto, sobrescrevendo qualquer um dos temas individuais das músicas. Se o culto não tiver um tema, então use o tema global. + + + + &Global Level + + + + + Use the global theme, overriding any themes associated with either the service or the songs. + Usar o tema global, sobrescrevendo qualquer tema associado com cultos ou músicas. + + PresentationPlugin - - <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. @@ -2583,42 +2810,42 @@ The content encoding is not UTF-8. Apresentação - + Select Presentation(s) Selecionar Apresentação(ões) - + Automatic - + Present using: Apresentar usando: - + File Exists - + A presentation with that filename already exists. Uma apresentação com este nome já existe. - + Unsupported File - + This type of presentation is not supported - + You must select an item to delete. @@ -2631,16 +2858,26 @@ The content encoding is not UTF-8. Apresentações - + Available Controllers Controladores Disponíveis + + + Advanced + + + + + Allow presentation application to be overriden + + RemotePlugin - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer via a web browser or other app<br>The Primary use for this would be to send alerts from a creche + <strong>Remote Plugin</strong><br/ >The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. @@ -2669,45 +2906,45 @@ The content encoding is not UTF-8. SongUsagePlugin + + + &Song Usage Tracking + + - &Delete recorded data - &Deletar dados armazenados - - - - Start/Stop live song usage recording - Iniciar/Parar registro do uso de músicas - - - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - <b>Plugin de Uso das Músicas</b><br>Este plugin registra o uso das músicas e quando elas foram usadas durante um culto + &Delete Tracking Data + - Delete song usage to specified date - Deletar uso da música para a data especificada - - - - Generate report on Song Usage - Gerar relatório de Uso das Músicas - - - - Song Usage Status - Status de Uso das Músicas + Delete song usage data up to a specified date. + - &Extract recorded data - &Extrair dados armazenados + &Extract Tracking Data + - - &Song Usage - &Uso das Músicas + + Generate a report on song usage. + + + + + Toggle Tracking + + + + + Toggle the tracking of song usage. + + + + + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. + @@ -2861,7 +3098,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. @@ -2920,21 +3157,11 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R &Title: - - - Alt&ernate Title: - - &Lyrics: - - - &Verse Order: - - &Add @@ -3025,11 +3252,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R © - - - CCLI Number: - Número CCLI: - Comments @@ -3140,6 +3362,21 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R This song book does not exist, do you want to add it? + + + Alt&ernate title: + + + + + &Verse order: + + + + + CCLI number: + + SongsPlugin.EditVerseForm @@ -3350,40 +3587,35 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Autores - - %s (%s) - - - - + You must select an item to edit. - + You must select an item to delete. - - - Delete song? - - - - - Delete %d songs? - - - - - Delete Confirmation - - CCLI Licence: Licença CCLI: + + + Are you sure you want to delete the selected song? + + + + + Are you sure you want to delete the %d selected songs? + + + + + Delete Song(s)? + + SongsPlugin.SongBookForm @@ -3593,7 +3825,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - Display Verses on Live Tool bar + Display verses on live tool bar @@ -3621,247 +3853,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - Splashscreen - - - Starting - Iniciando - - - - Splash Screen - Tela Inicial - - - - ThemeManager - - - Import Theme - Importar Tema - - - - Delete Theme - Deletar Tema - - - - Error - Erro - - - - Edit Theme - Editar Tema - - - - Export Theme - Exportar Tema - - - - Theme Exists - Tema Existe - - - - Save Theme - (%s) - Salvar Tema - (%s) - - - - Select Theme Import File - Selecionar Arquivo de Importação de Tema - - - - New Theme - Novo Tema - - - - Create a new theme. - - - - - Edit a theme. - - - - - Delete a theme. - - - - - Import a theme. - - - - - Export a theme. - - - - - &Edit Theme - - - - - &Delete Theme - - - - - Set As &Global Default - - - - - E&xport Theme - - - - - %s (default) - - - - - You must select a theme to edit. - - - - - You must select a theme to delete. - - - - - Delete Confirmation - - - - - Delete theme? - - - - - You are unable to delete the default theme. - - - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - - - - - You have not selected a theme. - - - - - Theme Exported - - - - - Your theme has been successfully exported. - - - - - Theme Export Failed - - - - - Your theme could not be exported due to an error. - - - - - Theme (*.*) - - - - - File is not a valid theme. -The content encoding is not UTF-8. - - - - - File is not a valid theme. - - - - - A theme with this name already exists. Would you like to overwrite it? - - - - - ThemesTab - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - Use o tema de cada música na base de dados. Se uma música não tiver um tema associado com ela, então use o tema do culto. Se o culto não tiver um tema, então use o tema global. - - - - Use the global theme, overriding any themes associated with either the service or the songs. - Usar o tema global, sobrescrevendo qualquer tema associado com cultos ou músicas. - - - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - Usar o tema do culto, sobrescrevendo qualquer um dos temas individuais das músicas. Se o culto não tiver um tema, então use o tema global. - - - - Themes - Temas - - - - Global Theme - - - - - Theme Level - - - - - S&ong Level - - - - - &Service Level - - - - - &Global Level - - - - - VerseType + SongsPlugin.VerseType Verse diff --git a/resources/i18n/openlp_sv.ts b/resources/i18n/openlp_sv.ts index 6f54febf2..2c9b1fd1d 100644 --- a/resources/i18n/openlp_sv.ts +++ b/resources/i18n/openlp_sv.ts @@ -14,8 +14,8 @@ - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - <b>Alarm Plugin</b><br>Den här plugin:en kontrollerar visning av alarm på presentationsbilden + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen + @@ -171,8 +171,8 @@ - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - <strong>Bibel Plugin</strong><br /> Det här pluginprogrammet visar Bibelverser från olika källor på skärmen. + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display bible verses from different sources during the service. + @@ -655,8 +655,8 @@ Changes do not affect verses already in the service. CustomPlugin - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> - <b>Anpassad Plugin</b><br>Det här pluginprogrammet tillåter visning av bilder på samma sätt som sånger. Den ger större frihet över sångpluginprogrammet.<br> + <strong>Custom Plugin</strong><br />The custom plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. + @@ -827,7 +827,7 @@ Changes do not affect verses already in the service. ImagePlugin - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. @@ -906,8 +906,8 @@ Changes do not affect verses already in the service. MediaPlugin - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - <b>Media Plugin</b><br>Den här plugin:en tillåter uppspelning av ljud och video + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. + @@ -1643,7 +1643,7 @@ This General Public License does not permit incorporating your program into prop OpenLP.MainWindow - + OpenLP 2.0 OpenLP 2.0 @@ -1653,404 +1653,404 @@ This General Public License does not permit incorporating your program into prop Engelska - + &File &Fil - + &Import &Importera - + &Export &Exportera - + &View &Visa - + M&ode &Läge - + &Tools &Verktyg - + &Settings &Inställningar - + &Language &Språk - + &Help &Hjälp - + Media Manager Mediahanterare - + Service Manager Mötesplaneringshanterare - + Theme Manager Temahanterare - + &New &Ny - + New Service - + Create a new service. - + Ctrl+N Ctrl+N - + &Open &Öppna - + Open Service - + Open an existing service. - + Ctrl+O Ctrl+O - + &Save &Spara - + Save Service - + Save the current service to disk. - + Ctrl+S Ctrl+S - + Save &As... S&para som... - + Save Service As Spara mötesplanering som... - + Save the current service under a new name. - + Ctrl+Shift+S - + E&xit &Avsluta - + Quit OpenLP Stäng OpenLP - + Alt+F4 Alt+F4 - + &Theme &Tema - + &Configure OpenLP... - + &Media Manager &Mediahanterare - + Toggle Media Manager Växla mediahanterare - + Toggle the visibility of the media manager. - + F8 F8 - + &Theme Manager &Temahanterare - + Toggle Theme Manager Växla temahanteraren - + Toggle the visibility of the theme manager. - + F10 F10 - + &Service Manager &Mötesplaneringshanterare - + Toggle Service Manager Växla mötesplaneringshanterare - + Toggle the visibility of the service manager. - + F9 F9 - + &Preview Panel &Förhandsgranskning - + Toggle Preview Panel Växla förhandsgranskningspanel - + Toggle the visibility of the preview panel. - + F11 F11 - + &Live Panel - + Toggle Live Panel - + Toggle the visibility of the live panel. - + F12 F12 - + &Plugin List &Pluginlista - + List the Plugins Lista Plugin - + Alt+F7 Alt+F7 - + &User Guide &Användarguide - + &About &Om - + More information about OpenLP Mer information om OpenLP - + Ctrl+F1 Ctrl+F1 - + &Online Help &Online-hjälp - + &Web Site &Webbsida - + &Auto Detect - + Use the system language, if available. - + Set the interface language to %s - + Add &Tool... - + Add an application to the list of tools. - + &Default - + Set the view mode back to the default. - + &Setup - + Set the view mode to Setup. - + &Live &Live - + Set the view mode to Live. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from <a href="http://openlp.org/">http://openlp.org/</a>. - + OpenLP Version Updated OpenLP-version uppdaterad - + OpenLP Main Display Blanked OpenLP huvuddisplay tömd - + The Main Display has been blanked out Huvuddisplayen har rensats - + Save Changes to Service? - + Your service has changed. Do you want to save those changes? - + Default Theme: %s @@ -2567,12 +2567,239 @@ The content encoding is not UTF-8. Hoppa till vers + + OpenLP.ThemeManager + + + New Theme + Nytt Tema + + + + Create a new theme. + + + + + Edit Theme + Redigera tema + + + + Edit a theme. + + + + + Delete Theme + Ta bort tema + + + + Delete a theme. + + + + + Import Theme + Importera tema + + + + Import a theme. + + + + + Export Theme + Exportera tema + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + Delete Confirmation + + + + + Delete theme? + + + + + Error + Fel + + + + You are unable to delete the default theme. + Du kan inte ta bort standardtemat. + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + Du har inte valt ett tema. + + + + Save Theme - (%s) + Spara tema - (%s) + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Select Theme Import File + Välj tema importfil + + + + Theme (*.*) + + + + + File is not a valid theme. +The content encoding is not UTF-8. + + + + + File is not a valid theme. + Filen är inte ett giltigt tema. + + + + Theme Exists + Temat finns + + + + A theme with this name already exists. Would you like to overwrite it? + + + + + OpenLP.ThemesTab + + + Themes + Teman + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Använd temat för varje sång i databasen indviduellt. Om en sång inte har ett associerat tema, använd planeringens schema. Om planeringen inte har ett tema, använd globala temat. + + + + &Service Level + + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + Använd temat för mötesplaneringen, och ignorera sångernas indviduella teman. Om mötesplaneringen inte har ett tema använd då det globala temat. + + + + &Global Level + + + + + Use the global theme, overriding any themes associated with either the service or the songs. + Använd det globala temat, ignorerar teman associerade med mötesplaneringen eller sångerna. + + PresentationPlugin - - <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - <b>Presentations Plugin</b> <br> Ger möjlighet att visa presentationer genom olika program. Tillgängliga presentationsprogram finns i en drop-down meny. + + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + @@ -2583,42 +2810,42 @@ The content encoding is not UTF-8. Presentation - + Select Presentation(s) Välj presentation(er) - + Automatic Automatisk - + Present using: Presentera genom: - + File Exists - + A presentation with that filename already exists. En presentation med det namnet finns redan. - + Unsupported File - + This type of presentation is not supported - + You must select an item to delete. @@ -2631,16 +2858,26 @@ The content encoding is not UTF-8. Presentationer - + Available Controllers Tillgängliga Presentationsprogram + + + Advanced + + + + + Allow presentation application to be overriden + + RemotePlugin - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer via a web browser or other app<br>The Primary use for this would be to send alerts from a creche + <strong>Remote Plugin</strong><br/ >The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. @@ -2669,45 +2906,45 @@ The content encoding is not UTF-8. SongUsagePlugin + + + &Song Usage Tracking + + - &Delete recorded data - &Ta bort inspelad data - - - - Start/Stop live song usage recording - Starta/Stoppa inspelning av sånganvändning - - - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - <b>SongUsage Plugin</b><br>Det här pluginprogrammet spelar in användningen av sånger och när de använts i en planering + &Delete Tracking Data + - Delete song usage to specified date - Ta bort sånganvändning fram till specificerat datum - - - - Generate report on Song Usage - Generera rapport på Sånganvändning - - - - Song Usage Status - Sånganvändningsstatus + Delete song usage data up to a specified date. + - &Extract recorded data - &Extrahera inspelade data + &Extract Tracking Data + - - &Song Usage - &Sånganvändning + + Generate a report on song usage. + + + + + Toggle Tracking + + + + + Toggle the tracking of song usage. + + + + + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. + @@ -2861,7 +3098,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. @@ -2920,21 +3157,11 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R &Title: - - - Alt&ernate Title: - - &Lyrics: - - - &Verse Order: - - &Add @@ -3025,11 +3252,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R © - - - CCLI Number: - CCLI-nummer: - Comments @@ -3140,6 +3362,21 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R This song book does not exist, do you want to add it? + + + Alt&ernate title: + + + + + &Verse order: + + + + + CCLI number: + + SongsPlugin.EditVerseForm @@ -3350,40 +3587,35 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - - %s (%s) - - - - + You must select an item to edit. - + You must select an item to delete. - - - Delete song? - - - - - Delete %d songs? - - - - - Delete Confirmation - - CCLI Licence: CCLI-licens: + + + Are you sure you want to delete the selected song? + + + + + Are you sure you want to delete the %d selected songs? + + + + + Delete Song(s)? + + SongsPlugin.SongBookForm @@ -3593,7 +3825,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - Display Verses on Live Tool bar + Display verses on live tool bar @@ -3621,247 +3853,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - Splashscreen - - - Starting - Startar - - - - Splash Screen - Startbild - - - - ThemeManager - - - Import Theme - Importera tema - - - - Delete Theme - Ta bort tema - - - - Error - Fel - - - - File is not a valid theme. - Filen är inte ett giltigt tema. - - - - Edit Theme - Redigera tema - - - - Export Theme - Exportera tema - - - - You are unable to delete the default theme. - Du kan inte ta bort standardtemat. - - - - Theme Exists - Temat finns - - - - Save Theme - (%s) - Spara tema - (%s) - - - - Select Theme Import File - Välj tema importfil - - - - New Theme - Nytt Tema - - - - You have not selected a theme. - Du har inte valt ett tema. - - - - Create a new theme. - - - - - Edit a theme. - - - - - Delete a theme. - - - - - Import a theme. - - - - - Export a theme. - - - - - &Edit Theme - - - - - &Delete Theme - - - - - Set As &Global Default - - - - - E&xport Theme - - - - - %s (default) - - - - - You must select a theme to edit. - - - - - You must select a theme to delete. - - - - - Delete Confirmation - - - - - Delete theme? - - - - - Theme %s is use in %s plugin. - - - - - Theme %s is use by the service manager. - - - - - Theme Exported - - - - - Your theme has been successfully exported. - - - - - Theme Export Failed - - - - - Your theme could not be exported due to an error. - - - - - Theme (*.*) - - - - - File is not a valid theme. -The content encoding is not UTF-8. - - - - - A theme with this name already exists. Would you like to overwrite it? - - - - - ThemesTab - - - Use the global theme, overriding any themes associated with either the service or the songs. - Använd det globala temat, ignorerar teman associerade med mötesplaneringen eller sångerna. - - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - Använd temat för varje sång i databasen indviduellt. Om en sång inte har ett associerat tema, använd planeringens schema. Om planeringen inte har ett tema, använd globala temat. - - - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - Använd temat för mötesplaneringen, och ignorera sångernas indviduella teman. Om mötesplaneringen inte har ett tema använd då det globala temat. - - - - Themes - Teman - - - - Global Theme - - - - - Theme Level - - - - - S&ong Level - - - - - &Service Level - - - - - &Global Level - - - - - VerseType + SongsPlugin.VerseType Verse