diff --git a/openlp/core/ui/serviceitemeditdialog.py b/openlp/core/ui/serviceitemeditdialog.py index ef041972b..a32abce37 100644 --- a/openlp/core/ui/serviceitemeditdialog.py +++ b/openlp/core/ui/serviceitemeditdialog.py @@ -68,9 +68,9 @@ class Ui_ServiceItemEditDialog(object): def retranslateUi(self, ServiceItemEditDialog): ServiceItemEditDialog.setWindowTitle( - translate('ServiceItemEditForm', 'Service Item Maintenance')) - self.upButton.setText(translate('ServiceItemEditForm', 'Up')) - self.deleteButton.setText(translate('ServiceItemEditForm', 'Delete')) - self.downButton.setText(translate('ServiceItemEditForm', 'Down')) + translate('OpenLP.ServiceItemEditForm', 'Reorder Service Item')) + self.upButton.setText(translate('OpenLP.ServiceItemEditForm', 'Up')) + self.deleteButton.setText(translate('OpenLP.ServiceItemEditForm', 'Delete')) + self.downButton.setText(translate('OpenLP.ServiceItemEditForm', 'Down')) diff --git a/openlp/core/ui/servicemanager.py b/openlp/core/ui/servicemanager.py index 19811b979..85193d82d 100644 --- a/openlp/core/ui/servicemanager.py +++ b/openlp/core/ui/servicemanager.py @@ -117,27 +117,27 @@ class ServiceManager(QtGui.QWidget): # Create the top toolbar self.Toolbar = OpenLPToolbar(self) self.Toolbar.addToolbarButton( - translate('ServiceManager', 'New Service'), + translate('OpenLP.ServiceManager', 'New Service'), u':/general/general_new.png', - translate('ServiceManager', 'Create a new service'), + translate('OpenLP.ServiceManager', 'Create a new service'), self.onNewService) self.Toolbar.addToolbarButton( - translate('ServiceManager', 'Open Service'), + translate('OpenLP.ServiceManager', 'Open Service'), u':/general/general_open.png', - translate('ServiceManager', 'Load an existing service'), + translate('OpenLP.ServiceManager', 'Load an existing service'), self.onLoadService) self.Toolbar.addToolbarButton( - translate('ServiceManager', 'Save Service'), + translate('OpenLP.ServiceManager', 'Save Service'), u':/general/general_save.png', - translate('ServiceManager', 'Save this service'), + translate('OpenLP.ServiceManager', 'Save this service'), self.onQuickSaveService) self.Toolbar.addSeparator() - self.ThemeLabel = QtGui.QLabel(translate('ServiceManager', 'Theme:'), + self.ThemeLabel = QtGui.QLabel(translate('OpenLP.ServiceManager', 'Theme:'), self) self.ThemeLabel.setMargin(3) self.Toolbar.addToolbarWidget(u'ThemeLabel', self.ThemeLabel) self.ThemeComboBox = QtGui.QComboBox(self.Toolbar) - self.ThemeComboBox.setToolTip(translate('ServiceManager', + self.ThemeComboBox.setToolTip(translate('OpenLP.ServiceManager', 'Select a theme for the service')) self.ThemeComboBox.setSizeAdjustPolicy( QtGui.QComboBox.AdjustToContents) @@ -168,28 +168,35 @@ class ServiceManager(QtGui.QWidget): # Add the bottom toolbar self.OrderToolbar = OpenLPToolbar(self) self.OrderToolbar.addToolbarButton( - translate('ServiceManager', 'Move to &top'), + translate('OpenLP.ServiceManager', 'Move to &top'), u':/services/service_top.png', - translate('ServiceManager', 'Move to top'), self.onServiceTop) + translate('OpenLP.ServiceManager', + 'Move item to the top of the service.'), + self.onServiceTop) self.OrderToolbar.addToolbarButton( - translate('ServiceManager', 'Move &up'), + translate('OpenLP.ServiceManager', 'Move &up'), u':/services/service_up.png', - translate('ServiceManager', 'Move up order'), self.onServiceUp) + translate('OpenLP.ServiceManager', + 'Move item up one position in the service.'), + self.onServiceUp) self.OrderToolbar.addToolbarButton( - translate('ServiceManager', 'Move &down'), + translate('OpenLP.ServiceManager', 'Move &down'), u':/services/service_down.png', - translate('ServiceManager', 'Move down order'), + translate('OpenLP.ServiceManager', + 'Move item down one position in the service.'), self.onServiceDown) self.OrderToolbar.addToolbarButton( - translate('ServiceManager', 'Move to &bottom'), + translate('OpenLP.ServiceManager', 'Move to &bottom'), u':/services/service_bottom.png', - translate('ServiceManager', 'Move to end'), + translate('OpenLP.ServiceManager', + 'Move item to the end of the service.'), self.onServiceEnd) self.OrderToolbar.addSeparator() self.OrderToolbar.addToolbarButton( - translate('ServiceManager', '&Delete From Service'), + translate('OpenLP.ServiceManager', '&Delete From Service'), u':/general/general_delete.png', - translate('ServiceManager', 'Delete From Service'), + translate('OpenLP.ServiceManager', + 'Delete the selected item from the service.'), self.onDeleteFromService) self.Layout.addWidget(self.OrderToolbar) # Connect up our signals and slots @@ -223,37 +230,37 @@ class ServiceManager(QtGui.QWidget): #build the drag and drop context menu self.dndMenu = QtGui.QMenu() self.newAction = self.dndMenu.addAction( - translate('ServiceManager', '&Add New Item')) + translate('OpenLP.ServiceManager', '&Add New Item')) self.newAction.setIcon(build_icon(u':/general/general_edit.png')) self.addToAction = self.dndMenu.addAction( - translate('ServiceManager', '&Add to Selected Item')) + translate('OpenLP.ServiceManager', '&Add to Selected Item')) self.addToAction.setIcon(build_icon(u':/general/general_edit.png')) #build the context menu self.menu = QtGui.QMenu() self.editAction = self.menu.addAction( - translate('ServiceManager', '&Edit Item')) + translate('OpenLP.ServiceManager', '&Edit Item')) self.editAction.setIcon(build_icon(u':/general/general_edit.png')) self.maintainAction = self.menu.addAction( - translate('ServiceManager', '&Maintain Item')) + translate('OpenLP.ServiceManager', '&Reorder Item')) self.maintainAction.setIcon(build_icon(u':/general/general_edit.png')) self.notesAction = self.menu.addAction( - translate('ServiceManager', '&Notes')) + translate('OpenLP.ServiceManager', '&Notes')) self.notesAction.setIcon(build_icon(u':/services/service_notes.png')) self.deleteAction = self.menu.addAction( - translate('ServiceManager', '&Delete From Service')) + translate('OpenLP.ServiceManager', '&Delete From Service')) self.deleteAction.setIcon(build_icon(u':/general/general_delete.png')) self.sep1 = self.menu.addAction(u'') self.sep1.setSeparator(True) self.previewAction = self.menu.addAction( - translate('ServiceManager', '&Preview Verse')) + translate('OpenLP.ServiceManager', '&Preview Verse')) self.previewAction.setIcon(build_icon(u':/general/general_preview.png')) self.liveAction = self.menu.addAction( - translate('ServiceManager', '&Live Verse')) + translate('OpenLP.ServiceManager', '&Live Verse')) self.liveAction.setIcon(build_icon(u':/general/general_live.png')) self.sep2 = self.menu.addAction(u'') self.sep2.setSeparator(True) self.themeMenu = QtGui.QMenu( - translate('ServiceManager', '&Change Item Theme')) + translate('OpenLP.ServiceManager', '&Change Item Theme')) self.menu.addMenu(self.themeMenu) def supportedSuffixes(self, suffix): @@ -485,8 +492,8 @@ class ServiceManager(QtGui.QWidget): self.parent.generalSettingsSection + u'/save prompt', QtCore.QVariant(False)).toBool(): ret = QtGui.QMessageBox.question(self, - translate('ServiceManager', 'Save Changes to Service?'), - translate('ServiceManager', + translate('OpenLP.ServiceManager', 'Save Changes to Service?'), + translate('OpenLP.ServiceManager', 'Your service is unsaved, do you want to save ' 'those changes before creating a new one?'), QtGui.QMessageBox.StandardButtons( @@ -571,9 +578,9 @@ class ServiceManager(QtGui.QWidget): log.debug(u'onSaveService') if not quick or self.isNew: filename = QtGui.QFileDialog.getSaveFileName(self, - translate('ServiceManager', 'Save Service'), + translate('OpenLP.ServiceManager', 'Save Service'), SettingsManager.get_last_dir(self.parent.serviceSettingsSection), - translate('ServiceManager', 'OpenLP Service Files (*.osz)')) + translate('OpenLP.ServiceManager', 'OpenLP Service Files (*.osz)')) else: filename = os.path.join(SettingsManager.get_last_dir( self.parent.serviceSettingsSection), self.serviceName) @@ -629,7 +636,7 @@ class ServiceManager(QtGui.QWidget): filename = self.parent.recentFiles[0] else: filename = QtGui.QFileDialog.getOpenFileName( - self, translate('ServiceManager', 'Open Service'), + self, translate('OpenLP.ServiceManager', 'Open Service'), SettingsManager.get_last_dir( self.parent.serviceSettingsSection), u'Services (*.osz)') filename = QtCore.QDir.toNativeSeparators(filename) @@ -643,8 +650,8 @@ class ServiceManager(QtGui.QWidget): """ if self.parent.serviceNotSaved: ret = QtGui.QMessageBox.question(self, - translate('ServiceManager', 'Save Changes to Service?'), - translate('ServiceManager', + translate('OpenLP.ServiceManager', 'Save Changes to Service?'), + translate('OpenLP.ServiceManager', 'Your current service is unsaved, do you want to ' 'save the changes before opening a new one?'), QtGui.QMessageBox.StandardButtons( @@ -673,8 +680,8 @@ class ServiceManager(QtGui.QWidget): ucsfile = file.decode(u'utf-8') except UnicodeDecodeError: QtGui.QMessageBox.critical( - self, translate('ServiceManager', 'Error'), - translate('ServiceManager', + self, translate('OpenLP.ServiceManager', 'Error'), + translate('OpenLP.ServiceManager', 'File is not a valid service.\n' 'The content encoding is not UTF-8.')) log.exception(u'Filename "%s" is not valid UTF-8' % @@ -708,8 +715,8 @@ class ServiceManager(QtGui.QWidget): log.exception(u'Failed to remove osd file') else: QtGui.QMessageBox.critical( - self, translate('ServiceManager', 'Error'), - translate('ServiceManager', + self, translate('OpenLP.ServiceManager', 'Error'), + translate('OpenLP.ServiceManager', 'File is not a valid service.')) log.exception(u'File contains no service data') except (IOError, NameError): @@ -837,8 +844,8 @@ class ServiceManager(QtGui.QWidget): self.serviceItems[item][u'service_item'], count) else: QtGui.QMessageBox.critical(self, - translate('ServiceManager', 'Missing Display Handler'), - translate('ServiceManager', 'Your item cannot be displayed ' + translate('OpenLP.ServiceManager', 'Missing Display Handler'), + translate('OpenLP.ServiceManager', 'Your item cannot be displayed ' 'as there is no handler to display it'), QtGui.QMessageBox.StandardButtons( QtGui.QMessageBox.Ok), @@ -873,8 +880,8 @@ class ServiceManager(QtGui.QWidget): self.serviceItems[item][u'service_item'], 0) else: QtGui.QMessageBox.critical(self, - translate('ServiceManager', 'Missing Display Handler'), - translate('ServiceManager', 'Your item cannot be displayed ' + translate('OpenLP.ServiceManager', 'Missing Display Handler'), + translate('OpenLP.ServiceManager', 'Your item cannot be displayed ' 'as there is no handler to display it'), QtGui.QMessageBox.StandardButtons( QtGui.QMessageBox.Ok), diff --git a/openlp/core/ui/servicenotedialog.py b/openlp/core/ui/servicenotedialog.py index 740d304f4..a5977a2de 100644 --- a/openlp/core/ui/servicenotedialog.py +++ b/openlp/core/ui/servicenotedialog.py @@ -49,4 +49,4 @@ class Ui_ServiceNoteEdit(object): def retranslateUi(self, ServiceNoteEdit): ServiceNoteEdit.setWindowTitle( - translate('ServiceNoteForm', 'Service Item Notes')) + translate('OpenLP.ServiceNoteForm', 'Service Item Notes')) diff --git a/openlp/core/ui/settingsdialog.py b/openlp/core/ui/settingsdialog.py index c337ccc48..36e6304e5 100644 --- a/openlp/core/ui/settingsdialog.py +++ b/openlp/core/ui/settingsdialog.py @@ -63,5 +63,5 @@ class Ui_SettingsDialog(object): QtCore.QMetaObject.connectSlotsByName(SettingsDialog) def retranslateUi(self, SettingsDialog): - SettingsDialog.setWindowTitle(translate('SettingsForm', + SettingsDialog.setWindowTitle(translate('OpenLP.SettingsForm', 'Configure OpenLP')) diff --git a/openlp/core/ui/slidecontroller.py b/openlp/core/ui/slidecontroller.py index 70ec3ac6e..b1539c20c 100644 --- a/openlp/core/ui/slidecontroller.py +++ b/openlp/core/ui/slidecontroller.py @@ -128,11 +128,11 @@ class SlideController(QtGui.QWidget): # Type label for the top of the slide controller self.TypeLabel = QtGui.QLabel(self.Panel) if self.isLive: - self.TypeLabel.setText(translate('SlideController', 'Live')) + self.TypeLabel.setText(translate('OpenLP.SlideController', 'Live')) self.split = 1 self.typePrefix = u'live' else: - self.TypeLabel.setText(translate('SlideController', 'Preview')) + self.TypeLabel.setText(translate('OpenLP.SlideController', 'Preview')) self.split = 0 self.typePrefix = u'preview' self.TypeLabel.setStyleSheet(u'font-weight: bold; font-size: 12pt;') @@ -179,29 +179,29 @@ class SlideController(QtGui.QWidget): if self.isLive: self.Toolbar.addToolbarButton( u'First Slide', u':/slides/slide_first.png', - translate('SlideController', 'Move to first'), + translate('OpenLP.SlideController', 'Move to first'), self.onSlideSelectedFirst) self.Toolbar.addToolbarButton( u'Previous Slide', u':/slides/slide_previous.png', - translate('SlideController', 'Move to previous'), + translate('OpenLP.SlideController', 'Move to previous'), self.onSlideSelectedPrevious) self.Toolbar.addToolbarButton( u'Next Slide', u':/slides/slide_next.png', - translate('SlideController', 'Move to next'), + translate('OpenLP.SlideController', 'Move to next'), self.onSlideSelectedNext) if self.isLive: self.Toolbar.addToolbarButton( u'Last Slide', u':/slides/slide_last.png', - translate('SlideController', 'Move to last'), + translate('OpenLP.SlideController', 'Move to last'), self.onSlideSelectedLast) if self.isLive: self.Toolbar.addToolbarSeparator(u'Close Separator') self.HideMenu = QtGui.QToolButton(self.Toolbar) - self.HideMenu.setText(translate('SlideController', 'Hide')) + self.HideMenu.setText(translate('OpenLP.SlideController', 'Hide')) self.HideMenu.setPopupMode(QtGui.QToolButton.MenuButtonPopup) self.Toolbar.addToolbarWidget(u'Hide Menu', self.HideMenu) self.HideMenu.setMenu(QtGui.QMenu( - translate('SlideController', 'Hide'), self.Toolbar)) + translate('OpenLP.SlideController', 'Hide'), self.Toolbar)) self.BlankScreen = QtGui.QAction(QtGui.QIcon( u':/slides/slide_blank.png'), u'Blank Screen', self.HideMenu) self.BlankScreen.setCheckable(True) @@ -225,44 +225,44 @@ class SlideController(QtGui.QWidget): self.Toolbar.addToolbarSeparator(u'Close Separator') self.Toolbar.addToolbarButton( u'Go Live', u':/general/general_live.png', - translate('SlideController', 'Move to live'), self.onGoLive) + translate('OpenLP.SlideController', 'Move to live'), self.onGoLive) self.Toolbar.addToolbarSeparator(u'Close Separator') self.Toolbar.addToolbarButton( u'Edit Song', u':/general/general_edit.png', - translate('SlideController', 'Edit and re-preview Song'), + translate('OpenLP.SlideController', 'Edit and re-preview Song'), self.onEditSong) if isLive: self.Toolbar.addToolbarSeparator(u'Loop Separator') self.Toolbar.addToolbarButton( u'Start Loop', u':/media/media_time.png', - translate('SlideController', 'Start continuous loop'), + translate('OpenLP.SlideController', 'Start continuous loop'), self.onStartLoop) self.Toolbar.addToolbarButton( u'Stop Loop', u':/media/media_stop.png', - translate('SlideController', 'Stop continuous loop'), + translate('OpenLP.SlideController', 'Stop continuous loop'), self.onStopLoop) self.DelaySpinBox = QtGui.QSpinBox() self.DelaySpinBox.setMinimum(1) self.DelaySpinBox.setMaximum(180) self.Toolbar.addToolbarWidget( u'Image SpinBox', self.DelaySpinBox) - self.DelaySpinBox.setSuffix(translate('SlideController', 's')) - self.DelaySpinBox.setToolTip(translate('SlideController', + self.DelaySpinBox.setSuffix(translate('OpenLP.SlideController', 's')) + self.DelaySpinBox.setToolTip(translate('OpenLP.SlideController', 'Delay between slides in seconds')) self.ControllerLayout.addWidget(self.Toolbar) #Build a Media ToolBar self.Mediabar = OpenLPToolbar(self) self.Mediabar.addToolbarButton( u'Media Start', u':/slides/media_playback_start.png', - translate('SlideController', 'Start playing media'), + translate('OpenLP.SlideController', 'Start playing media'), self.onMediaPlay) self.Mediabar.addToolbarButton( u'Media Pause', u':/slides/media_playback_pause.png', - translate('SlideController', 'Start playing media'), + translate('OpenLP.SlideController', 'Start playing media'), self.onMediaPause) self.Mediabar.addToolbarButton( u'Media Stop', u':/slides/media_playback_stop.png', - translate('SlideController', 'Start playing media'), + translate('OpenLP.SlideController', 'Start playing media'), self.onMediaStop) if not self.isLive: self.seekSlider = Phonon.SeekSlider() @@ -278,11 +278,11 @@ class SlideController(QtGui.QWidget): # Build the Song Toolbar if isLive: self.SongMenu = QtGui.QToolButton(self.Toolbar) - self.SongMenu.setText(translate('SlideController', 'Go to Verse')) + self.SongMenu.setText(translate('OpenLP.SlideController', 'Go to Verse')) self.SongMenu.setPopupMode(QtGui.QToolButton.InstantPopup) self.Toolbar.addToolbarWidget(u'Song Menu', self.SongMenu) self.SongMenu.setMenu(QtGui.QMenu( - translate('SlideController', 'Go to Verse'), self.Toolbar)) + translate('OpenLP.SlideController', 'Go to Verse'), self.Toolbar)) self.Toolbar.makeWidgetsInvisible([u'Song Menu']) # Screen preview area self.PreviewFrame = QtGui.QFrame(self.Splitter) diff --git a/openlp/plugins/songusage/forms/songusagedeletedialog.py b/openlp/plugins/songusage/forms/songusagedeletedialog.py index e7216d479..90fd314ed 100644 --- a/openlp/plugins/songusage/forms/songusagedeletedialog.py +++ b/openlp/plugins/songusage/forms/songusagedeletedialog.py @@ -59,4 +59,4 @@ class Ui_SongUsageDeleteDialog(object): def retranslateUi(self, SongUsageDeleteDialog): SongUsageDeleteDialog.setWindowTitle( - translate('SongsPlugin.AuditDeleteDialog', 'Song Usage Delete')) \ No newline at end of file + translate('SongUsagePlugin.AuditDeleteDialog', 'Delete Song Usage Data')) diff --git a/openlp/plugins/songusage/forms/songusagedeleteform.py b/openlp/plugins/songusage/forms/songusagedeleteform.py index 4ded872f0..e97f58878 100644 --- a/openlp/plugins/songusage/forms/songusagedeleteform.py +++ b/openlp/plugins/songusage/forms/songusagedeleteform.py @@ -43,9 +43,9 @@ class SongUsageDeleteForm(QtGui.QDialog, Ui_SongUsageDeleteDialog): def accept(self): ret = QtGui.QMessageBox.question(self, - translate('SongsPlugin.SongUsageDeleteForm', + translate('SongUsagePlugin.SongUsageDeleteForm', 'Delete Selected Song Usage Events?'), - translate('SongsPlugin.SongUsageDeleteForm', + translate('SongUsagePlugin.SongUsageDeleteForm', 'Are you sure you want to delete selected Song Usage data?'), QtGui.QMessageBox.StandardButtons( QtGui.QMessageBox.Ok | @@ -56,3 +56,4 @@ class SongUsageDeleteForm(QtGui.QDialog, Ui_SongUsageDeleteDialog): self.songusagemanager.delete_all_objects(SongUsageItem, SongUsageItem.usagedate <= deleteDate) self.close() + diff --git a/openlp/plugins/songusage/forms/songusagedetaildialog.py b/openlp/plugins/songusage/forms/songusagedetaildialog.py index fc7f8af7c..41736f763 100644 --- a/openlp/plugins/songusage/forms/songusagedetaildialog.py +++ b/openlp/plugins/songusage/forms/songusagedetaildialog.py @@ -86,11 +86,11 @@ class Ui_SongUsageDetailDialog(object): def retranslateUi(self, SongUsageDetailDialog): SongUsageDetailDialog.setWindowTitle( - translate('SongsPlugin.AuditDetailDialog', + translate('SongUsagePlugin.AuditDetailDialog', 'Song Usage Extraction')) self.DateRangeGroupBox.setTitle( - translate('SongsPlugin.AuditDetailDialog', 'Select Date Range')) + translate('SongUsagePlugin.AuditDetailDialog', 'Select Date Range')) self.ToLabel.setText( - translate('SongsPlugin.AuditDetailDialog', 'to')) + translate('SongUsagePlugin.AuditDetailDialog', 'to')) self.FileGroupBox.setTitle( - translate('SongsPlugin.AuditDetailDialog', 'Report Location')) + translate('SongUsagePlugin.AuditDetailDialog', 'Report Location')) diff --git a/openlp/plugins/songusage/forms/songusagedetailform.py b/openlp/plugins/songusage/forms/songusagedetailform.py index ac65ce857..67c2935eb 100644 --- a/openlp/plugins/songusage/forms/songusagedetailform.py +++ b/openlp/plugins/songusage/forms/songusagedetailform.py @@ -62,7 +62,7 @@ class SongUsageDetailForm(QtGui.QDialog, Ui_SongUsageDetailDialog): def defineOutputLocation(self): path = QtGui.QFileDialog.getExistingDirectory(self, - translate('SongsPlugin.SongUsageDetailForm', + translate('SongUsagePlugin.SongUsageDetailForm', 'Output File Location'), SettingsManager.get_last_dir(self.parent.settingsSection, 1)) path = unicode(path) diff --git a/resources/i18n/openlp_af.ts b/resources/i18n/openlp_af.ts index 79fc66234..67e34785d 100644 --- a/resources/i18n/openlp_af.ts +++ b/resources/i18n/openlp_af.ts @@ -2271,6 +2271,302 @@ You can download the latest version from <a href="http://openlp.org/&quo + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + Up + + + + + Delete + + + + + Down + + + + + OpenLP.ServiceManager + + + New Service + Nuwe Diens + + + + Create a new service + Skep 'n nuwe diens + + + + Open Service + Maak Diens Oop + + + + Load an existing service + Laai 'n bestaande diens + + + + Save Service + Stoor Diens + + + + Save this service + Stoor hierdie diens + + + + Theme: + Tema: + + + + Select a theme for the service + Selekteer 'n tema vir die diens + + + + Move to &top + + + + + Move &up + + + + + Move &down + + + + + Move to &bottom + + + + + &Delete From Service + + + + + &Add New Item + + + + + &Add to Selected Item + + + + + &Edit Item + R&edigeer Item + + + + &Reorder Item + + + + + &Notes + &Notas + + + + &Preview Verse + Vers V&oorsig + + + + &Live Verse + &Lewendige Vers + + + + &Change Item Theme + &Verander Item Tema + + + + Save Changes to Service? + Stoor Veranderinge aan Diens? + + + + Your service is unsaved, do you want to save those changes before creating a new one? + + + + + OpenLP Service Files (*.osz) + + + + + Your current service is unsaved, do you want to save the changes before opening a new one? + + + + + Error + Fout + + + + File is not a valid service. +The content encoding is not UTF-8. + + + + + File is not a valid service. + + + + + Missing Display Handler + + + + + Your item cannot be displayed as there is no handler to display it + + + + + Move item to the top of the service. + + + + + Move item up one position in the service. + + + + + Move item down one position in the service. + + + + + Move item to the end of the service. + + + + + Delete the selected item from the service. + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + Diens Item Notas + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + OpenLP.SlideController + + + Live + Regstreeks + + + + Preview + Voorskou + + + + Move to first + Verskuif na eerste + + + + Move to previous + Beweeg na vorige + + + + Move to next + Verskuif na volgende + + + + Move to last + Verskuif na laaste posisie + + + + Hide + + + + + Move to live + Verskuif na regstreekse skerm + + + + Edit and re-preview Song + Redigeer en sien weer 'n voorskou van die Lied + + + + Start continuous loop + Begin aaneenlopende lus + + + + Stop continuous loop + Stop deurlopende lus + + + + s + s + + + + Delay between slides in seconds + Vertraging in sekondes tussen skyfies + + + + Start playing media + Begin media speel + + + + Go to Verse + Gaan na Vers + + PresentationPlugin @@ -2371,302 +2667,6 @@ You can download the latest version from <a href="http://openlp.org/&quo - - ServiceItemEditForm - - - Service Item Maintenance - - - - - Up - - - - - Delete - - - - - Down - - - - - ServiceManager - - - Save Changes to Service? - Stoor Veranderinge aan Diens? - - - - Open Service - Maak Diens Oop - - - - Move to top - Skuif na bo - - - - Create a new service - Skep 'n nuwe diens - - - - Save this service - Stoor hierdie diens - - - - Theme: - Tema: - - - - Delete From Service - Verwyder Van Diens - - - - &Change Item Theme - &Verander Item Tema - - - - Save Service - Stoor Diens - - - - &Live Verse - &Lewendige Vers - - - - New Service - Nuwe Diens - - - - &Notes - &Notas - - - - Move to end - Verskuif na einde - - - - Select a theme for the service - Selekteer 'n tema vir die diens - - - - Move up order - Verskuif orde op - - - - Move down order - Verskuif orde af - - - - Load an existing service - Laai 'n bestaande diens - - - - &Preview Verse - Vers V&oorsig - - - - &Edit Item - R&edigeer Item - - - - Move to &top - - - - - Move &up - - - - - Move &down - - - - - Move to &bottom - - - - - &Delete From Service - - - - - &Add New Item - - - - - &Add to Selected Item - - - - - &Maintain Item - - - - - Your service is unsaved, do you want to save those changes before creating a new one? - - - - - OpenLP Service Files (*.osz) - - - - - Your current service is unsaved, do you want to save the changes before opening a new one? - - - - - Error - Fout - - - - File is not a valid service. -The content encoding is not UTF-8. - - - - - File is not a valid service. - - - - - Missing Display Handler - - - - - Your item cannot be displayed as there is no handler to display it - - - - - ServiceNoteForm - - - Service Item Notes - Diens Item Notas - - - - SettingsForm - - - Configure OpenLP - - - - - SlideController - - - Move to previous - Beweeg na vorige - - - - Go to Verse - Gaan na Vers - - - - Start continuous loop - Begin aaneenlopende lus - - - - Live - Regstreeks - - - - Start playing media - Begin media speel - - - - Move to live - Verskuif na regstreekse skerm - - - - Preview - Voorskou - - - - Move to last - Verskuif na laaste posisie - - - - Edit and re-preview Song - Redigeer en sien weer 'n voorskou van die Lied - - - - Delay between slides in seconds - Vertraging in sekondes tussen skyfies - - - - Move to next - Verskuif na volgende - - - - Move to first - Verskuif na eerste - - - - Stop continuous loop - Stop deurlopende lus - - - - s - s - - - - Hide - - - SongUsagePlugin @@ -2710,6 +2710,58 @@ The content encoding is not UTF-8. &Lied Gebruik + + SongUsagePlugin.AuditDeleteDialog + + + Delete Song Usage Data + + + + + SongUsagePlugin.AuditDetailDialog + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + aan + + + + Report Location + Rapporteer Ligging + + + + SongUsagePlugin.SongUsageDeleteForm + + + Delete Selected Song Usage Events? + + + + + Are you sure you want to delete selected Song Usage data? + + + + + SongUsagePlugin.SongUsageDetailForm + + + Output File Location + Uitvoer Lêer Ligging + + SongsPlugin @@ -2819,37 +2871,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - - SongsPlugin.AuditDeleteDialog - - - Song Usage Delete - - - - - SongsPlugin.AuditDetailDialog - - - Song Usage Extraction - - - - - Select Date Range - - - - - to - aan - - - - Report Location - Rapporteer Ligging - - SongsPlugin.AuthorsForm @@ -2991,37 +3012,37 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Theme Tema - + New &Theme - + Copyright Information Kopiereg Informasie - + © - + CCLI Number: CCLI Nommer: - + Comments Kommentaar - + Theme, Copyright Info && Comments Tema, Kopiereg Informasie && Kommentaar @@ -3041,87 +3062,87 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + No Author Selected - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Add Topic - + This topic does not exist, do you want to add it? - + No Topic Selected - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + Add Book - + This song book does not exist, do you want to add it? - + Error Fout - + You need to type in a song title. - + You need to type in at least one verse. - + Warning - + You have not added any authors for this song. Do you want to add an author now? - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + This author is already in the list. - + This topic is already in the list. @@ -3449,7 +3470,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Error Fout @@ -3484,7 +3505,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Could not save your changes. @@ -3499,87 +3520,66 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Delete Author Wis Skrywer Uit - + Are you sure you want to delete the selected author? Is u seker u wil die geselekteerde skrywer uitwis? - + This author cannot be deleted, they are currently assigned to at least one song. - + No author selected! Geen skrywer geselekteer nie! - + Delete Topic Wis Onderwerp Uit - + Are you sure you want to delete the selected topic? Is u seker u wil die geselekteerde onderwerp uitwis? - + This topic cannot be deleted, it is currently assigned to at least one song. - + No topic selected! Geen onderwerp geselekteer nie! - + Delete Book Wis Boek Uit - + Are you sure you want to delete the selected book? Is jy seker jy wil die geselekteerde boek uitwis? - + This book cannot be deleted, it is currently assigned to at least one song. - + No book selected! Geen boek geselekteer nie! - - SongsPlugin.SongUsageDeleteForm - - - Delete Selected Song Usage Events? - - - - - Are you sure you want to delete selected Song Usage data? - - - - - SongsPlugin.SongUsageDetailForm - - - Output File Location - Uitvoer Lêer Ligging - - SongsPlugin.SongsTab @@ -3652,7 +3652,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Wis Tema Uit - + Error Fout @@ -3667,22 +3667,22 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R 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 @@ -3772,48 +3772,48 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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? diff --git a/resources/i18n/openlp_de.ts b/resources/i18n/openlp_de.ts index a969f6d77..03d274adc 100644 --- a/resources/i18n/openlp_de.ts +++ b/resources/i18n/openlp_de.ts @@ -2271,6 +2271,302 @@ You can download the latest version from <a href="http://openlp.org/&quo + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + Up + + + + + Delete + Löschen + + + + Down + + + + + OpenLP.ServiceManager + + + New Service + Neuer Ablauf + + + + Create a new service + Erstelle neuen Ablauf + + + + Open Service + Öffnen Ablauf + + + + Load an existing service + Öffne Ablauf + + + + Save Service + Ablauf speichern + + + + Save this service + Ablauf speichern + + + + Theme: + Design: + + + + Select a theme for the service + Design für den Ablauf auswählen + + + + Move to &top + + + + + Move &up + + + + + Move &down + + + + + Move to &bottom + + + + + &Delete From Service + + + + + &Add New Item + + + + + &Add to Selected Item + + + + + &Edit Item + &Bearbeite Element + + + + &Reorder Item + + + + + &Notes + &Notizen + + + + &Preview Verse + Vers in der &Vorschau zeigen + + + + &Live Verse + Vers &Live zeigen + + + + &Change Item Theme + &Design des Elements ändern + + + + Save Changes to Service? + Änderungen am Ablauf speichern? + + + + Your service is unsaved, do you want to save those changes before creating a new one? + + + + + OpenLP Service Files (*.osz) + + + + + Your current service is unsaved, do you want to save the changes before opening a new one? + + + + + Error + Fehler + + + + File is not a valid service. +The content encoding is not UTF-8. + + + + + File is not a valid service. + + + + + Missing Display Handler + + + + + Your item cannot be displayed as there is no handler to display it + + + + + Move item to the top of the service. + + + + + Move item up one position in the service. + + + + + Move item down one position in the service. + + + + + Move item to the end of the service. + + + + + Delete the selected item from the service. + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + Elementnotiz + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + OpenLP.SlideController + + + Live + Live + + + + Preview + Vorschau + + + + Move to first + Ganz nach vorn verschieben + + + + Move to previous + Vorherige Folie anzeigen + + + + Move to next + Verschiebe zum Nächsten + + + + Move to last + Zur letzten Folie + + + + Hide + + + + + Move to live + Verschieben zur Live Ansicht + + + + Edit and re-preview Song + Lied bearbeiten und wieder anzeigen + + + + Start continuous loop + Endlosschleife starten + + + + Stop continuous loop + Endlosschleife beenden + + + + s + s + + + + Delay between slides in seconds + Pause zwischen den Folien in Sekunden + + + + Start playing media + Abspielen + + + + Go to Verse + Springe zu + + PresentationPlugin @@ -2371,302 +2667,6 @@ You can download the latest version from <a href="http://openlp.org/&quo - - ServiceItemEditForm - - - Service Item Maintenance - - - - - Up - - - - - Delete - Löschen - - - - Down - - - - - ServiceManager - - - Save Changes to Service? - Änderungen am Ablauf speichern? - - - - Open Service - Öffnen Ablauf - - - - Move to top - Nach oben verschieben - - - - Create a new service - Erstelle neuen Ablauf - - - - Save this service - Ablauf speichern - - - - Theme: - Design: - - - - Delete From Service - Aus dem Ablauf entfernen - - - - &Change Item Theme - &Design des Elements ändern - - - - Save Service - Ablauf speichern - - - - &Live Verse - Vers &Live zeigen - - - - New Service - Neuer Ablauf - - - - &Notes - &Notizen - - - - Move to end - Zum Ende schieben - - - - Select a theme for the service - Design für den Ablauf auswählen - - - - Move up order - Verschiebe Reihenfolge nach oben - - - - Move down order - Verschiebe Reihenfolge nach unten - - - - Load an existing service - Öffne Ablauf - - - - &Preview Verse - Vers in der &Vorschau zeigen - - - - &Edit Item - &Bearbeite Element - - - - Move to &top - - - - - Move &up - - - - - Move &down - - - - - Move to &bottom - - - - - &Delete From Service - - - - - &Add New Item - - - - - &Add to Selected Item - - - - - &Maintain Item - - - - - Your service is unsaved, do you want to save those changes before creating a new one? - - - - - OpenLP Service Files (*.osz) - - - - - Your current service is unsaved, do you want to save the changes before opening a new one? - - - - - Error - Fehler - - - - File is not a valid service. -The content encoding is not UTF-8. - - - - - File is not a valid service. - - - - - Missing Display Handler - - - - - Your item cannot be displayed as there is no handler to display it - - - - - ServiceNoteForm - - - Service Item Notes - Elementnotiz - - - - SettingsForm - - - Configure OpenLP - - - - - SlideController - - - Move to previous - Vorherige Folie anzeigen - - - - Go to Verse - Springe zu - - - - Start continuous loop - Endlosschleife starten - - - - Live - Live - - - - Start playing media - Abspielen - - - - Move to live - Verschieben zur Live Ansicht - - - - Preview - Vorschau - - - - Move to last - Zur letzten Folie - - - - Edit and re-preview Song - Lied bearbeiten und wieder anzeigen - - - - Delay between slides in seconds - Pause zwischen den Folien in Sekunden - - - - Move to next - Verschiebe zum Nächsten - - - - Move to first - Ganz nach vorn verschieben - - - - Stop continuous loop - Endlosschleife beenden - - - - s - s - - - - Hide - - - SongUsagePlugin @@ -2710,6 +2710,58 @@ The content encoding is not UTF-8. Lieder Statistik + + SongUsagePlugin.AuditDeleteDialog + + + Delete Song Usage Data + + + + + SongUsagePlugin.AuditDetailDialog + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + zu + + + + Report Location + Speicherort für die Statistiken + + + + SongUsagePlugin.SongUsageDeleteForm + + + Delete Selected Song Usage Events? + + + + + Are you sure you want to delete selected Song Usage data? + + + + + SongUsagePlugin.SongUsageDetailForm + + + Output File Location + Ablageort für Aufnahme wählen + + SongsPlugin @@ -2819,37 +2871,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - - SongsPlugin.AuditDeleteDialog - - - Song Usage Delete - - - - - SongsPlugin.AuditDetailDialog - - - Song Usage Extraction - - - - - Select Date Range - - - - - to - zu - - - - Report Location - Speicherort für die Statistiken - - SongsPlugin.AuthorsForm @@ -2981,37 +3002,37 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Liederbuch - + Theme Design - + New &Theme - + Copyright Information Copyright Angaben - + © - + CCLI Number: CCLI-Nummer: - + Comments Kommentare - + Theme, Copyright Info && Comments Design, Copyrightinformationen && Kommentare @@ -3031,77 +3052,77 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + No Author Selected - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Add Topic - + This topic does not exist, do you want to add it? - + No Topic Selected - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + Add Book - + This song book does not exist, do you want to add it? - + Error Fehler - + You need to type in a song title. - + You need to type in at least one verse. - + Warning - + You have not added any authors for this song. Do you want to add an author now? - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? @@ -3116,12 +3137,12 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + This author is already in the list. - + This topic is already in the list. @@ -3444,52 +3465,52 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Error Fehler - + Delete Author Lösche Autor - + Are you sure you want to delete the selected author? Sind Sie sicher, dass Sie den ausgewählten Autor löschen wollen? - + No author selected! Sie haben keinen Autor ausgewählt! - + Delete Topic Lösche Thema - + Are you sure you want to delete the selected topic? Soll der gewählte Eintrag wirklich gelöscht werden? - + No topic selected! Kein Thema ausgewählt! - + Delete Book Buch löschen - + Are you sure you want to delete the selected book? Sind Sie sicher, dass das markierte Buch wirklich gelöscht werden soll? - + No book selected! Kein Buch ausgewählt! @@ -3529,7 +3550,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Could not save your changes. @@ -3544,42 +3565,21 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + This author cannot be deleted, they are currently assigned to at least one song. - + This topic cannot be deleted, it is currently assigned to at least one song. - + This book cannot be deleted, it is currently assigned to at least one song. - - SongsPlugin.SongUsageDeleteForm - - - Delete Selected Song Usage Events? - - - - - Are you sure you want to delete selected Song Usage data? - - - - - SongsPlugin.SongUsageDetailForm - - - Output File Location - Ablageort für Aufnahme wählen - - SongsPlugin.SongsTab @@ -3652,7 +3652,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Design löschen - + Error Fehler @@ -3667,22 +3667,22 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R 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 @@ -3762,43 +3762,43 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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. @@ -3813,7 +3813,7 @@ The content encoding is not UTF-8. - + A theme with this name already exists. Would you like to overwrite it? diff --git a/resources/i18n/openlp_en.ts b/resources/i18n/openlp_en.ts index 3a8d0f94a..362ee9c05 100644 --- a/resources/i18n/openlp_en.ts +++ b/resources/i18n/openlp_en.ts @@ -2271,6 +2271,302 @@ You can download the latest version from <a href="http://openlp.org/&quo + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + Up + + + + + Delete + + + + + Down + + + + + OpenLP.ServiceManager + + + New Service + + + + + Create a new service + + + + + Open Service + + + + + Load an existing service + + + + + Save Service + + + + + Save this service + + + + + Theme: + + + + + Select a theme for the service + + + + + Move to &top + + + + + Move &up + + + + + Move &down + + + + + Move to &bottom + + + + + &Delete From Service + + + + + &Add New Item + + + + + &Add to Selected Item + + + + + &Edit Item + + + + + &Reorder Item + + + + + &Notes + + + + + &Preview Verse + + + + + &Live Verse + + + + + &Change Item Theme + + + + + Save Changes to Service? + + + + + Your service is unsaved, do you want to save those changes before creating a new one? + + + + + OpenLP Service Files (*.osz) + + + + + Your current service is unsaved, do you want to save the changes before opening a new one? + + + + + Error + + + + + File is not a valid service. +The content encoding is not UTF-8. + + + + + File is not a valid service. + + + + + Missing Display Handler + + + + + Your item cannot be displayed as there is no handler to display it + + + + + Move item to the top of the service. + + + + + Move item up one position in the service. + + + + + Move item down one position in the service. + + + + + Move item to the end of the service. + + + + + Delete the selected item from the service. + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + OpenLP.SlideController + + + Live + + + + + Preview + + + + + Move to first + + + + + Move to previous + + + + + Move to next + + + + + Move to last + + + + + Hide + + + + + Move to live + + + + + Edit and re-preview Song + + + + + Start continuous loop + + + + + Stop continuous loop + + + + + s + + + + + Delay between slides in seconds + + + + + Start playing media + + + + + Go to Verse + + + PresentationPlugin @@ -2371,302 +2667,6 @@ You can download the latest version from <a href="http://openlp.org/&quo - - ServiceItemEditForm - - - Service Item Maintenance - - - - - Up - - - - - Delete - - - - - Down - - - - - ServiceManager - - - Save Service - - - - - Save Changes to Service? - - - - - Open Service - - - - - Move to top - - - - - Create a new service - - - - - Save this service - - - - - Theme: - - - - - Delete From Service - - - - - &Change Item Theme - - - - - &Preview Verse - - - - - &Live Verse - - - - - New Service - - - - - &Notes - - - - - Select a theme for the service - - - - - Move up order - - - - - Move down order - - - - - Load an existing service - - - - - Move to end - - - - - &Edit Item - - - - - Move to &top - - - - - Move &up - - - - - Move &down - - - - - Move to &bottom - - - - - &Delete From Service - - - - - &Add New Item - - - - - &Add to Selected Item - - - - - &Maintain Item - - - - - Your service is unsaved, do you want to save those changes before creating a new one? - - - - - OpenLP Service Files (*.osz) - - - - - Your current service is unsaved, do you want to save the changes before opening a new one? - - - - - Error - - - - - File is not a valid service. -The content encoding is not UTF-8. - - - - - File is not a valid service. - - - - - Missing Display Handler - - - - - Your item cannot be displayed as there is no handler to display it - - - - - ServiceNoteForm - - - Service Item Notes - - - - - SettingsForm - - - Configure OpenLP - - - - - SlideController - - - Move to previous - - - - - Edit and re-preview Song - - - - - Delay between slides in seconds - - - - - Go to Verse - - - - - Start continuous loop - - - - - Live - - - - - Start playing media - - - - - Move to live - - - - - Move to last - - - - - Move to next - - - - - Move to first - - - - - Preview - - - - - Stop continuous loop - - - - - s - - - - - Hide - - - SongUsagePlugin @@ -2710,6 +2710,58 @@ The content encoding is not UTF-8. + + SongUsagePlugin.AuditDeleteDialog + + + Delete Song Usage Data + + + + + SongUsagePlugin.AuditDetailDialog + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + + + + + Report Location + + + + + SongUsagePlugin.SongUsageDeleteForm + + + Delete Selected Song Usage Events? + + + + + Are you sure you want to delete selected Song Usage data? + + + + + SongUsagePlugin.SongUsageDetailForm + + + Output File Location + + + SongsPlugin @@ -2819,37 +2871,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - - SongsPlugin.AuditDeleteDialog - - - Song Usage Delete - - - - - SongsPlugin.AuditDetailDialog - - - Song Usage Extraction - - - - - Select Date Range - - - - - to - - - - - Report Location - - - SongsPlugin.AuthorsForm @@ -2991,37 +3012,37 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Theme - + New &Theme - + Copyright Information - + © - + CCLI Number: - + Comments - + Theme, Copyright Info && Comments @@ -3041,87 +3062,87 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + No Author Selected - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Add Topic - + This topic does not exist, do you want to add it? - + No Topic Selected - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + Add Book - + This song book does not exist, do you want to add it? - + Error - + You need to type in a song title. - + You need to type in at least one verse. - + Warning - + You have not added any authors for this song. Do you want to add an author now? - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + This author is already in the list. - + This topic is already in the list. @@ -3449,7 +3470,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Error @@ -3484,7 +3505,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Could not save your changes. @@ -3499,87 +3520,66 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Delete Author - + Are you sure you want to delete the selected author? - + This author cannot be deleted, they are currently assigned to at least one song. - + No author selected! - + Delete Topic - + Are you sure you want to delete the selected topic? - + This topic cannot be deleted, it is currently assigned to at least one song. - + No topic selected! - + Delete Book - + Are you sure you want to delete the selected book? - + This book cannot be deleted, it is currently assigned to at least one song. - + No book selected! - - SongsPlugin.SongUsageDeleteForm - - - Delete Selected Song Usage Events? - - - - - Are you sure you want to delete selected Song Usage data? - - - - - SongsPlugin.SongUsageDetailForm - - - Output File Location - - - SongsPlugin.SongsTab @@ -3652,7 +3652,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Error @@ -3667,22 +3667,22 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Theme Exists - + Save Theme - (%s) - + Select Theme Import File - + New Theme @@ -3772,48 +3772,48 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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? diff --git a/resources/i18n/openlp_en_GB.ts b/resources/i18n/openlp_en_GB.ts index 51263dbd2..e6cfa79ad 100644 --- a/resources/i18n/openlp_en_GB.ts +++ b/resources/i18n/openlp_en_GB.ts @@ -2271,6 +2271,302 @@ You can download the latest version from <a href="http://openlp.org/&quo + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + Up + + + + + Delete + Delete + + + + Down + + + + + OpenLP.ServiceManager + + + New Service + New Service + + + + Create a new service + Create a new service + + + + Open Service + Open Service + + + + Load an existing service + Load an existing service + + + + Save Service + Save Service + + + + Save this service + Save this service + + + + Theme: + Theme: + + + + Select a theme for the service + Select a theme for the service + + + + Move to &top + + + + + Move &up + + + + + Move &down + + + + + Move to &bottom + + + + + &Delete From Service + + + + + &Add New Item + + + + + &Add to Selected Item + + + + + &Edit Item + &Edit Item + + + + &Reorder Item + + + + + &Notes + &Notes + + + + &Preview Verse + &Preview Verse + + + + &Live Verse + &Live Verse + + + + &Change Item Theme + &Change Item Theme + + + + Save Changes to Service? + Save Changes to Service? + + + + Your service is unsaved, do you want to save those changes before creating a new one? + + + + + OpenLP Service Files (*.osz) + + + + + Your current service is unsaved, do you want to save the changes before opening a new one? + + + + + Error + Error + + + + File is not a valid service. +The content encoding is not UTF-8. + + + + + File is not a valid service. + + + + + Missing Display Handler + + + + + Your item cannot be displayed as there is no handler to display it + + + + + Move item to the top of the service. + + + + + Move item up one position in the service. + + + + + Move item down one position in the service. + + + + + Move item to the end of the service. + + + + + Delete the selected item from the service. + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + Service Item Notes + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + OpenLP.SlideController + + + Live + Live + + + + Preview + Preview + + + + Move to first + Move to first + + + + Move to previous + Move to previous + + + + Move to next + Move to next + + + + Move to last + Move to last + + + + Hide + + + + + Move to live + Move to live + + + + Edit and re-preview Song + Edit and re-preview Song + + + + Start continuous loop + Start continuous loop + + + + Stop continuous loop + Stop continuous loop + + + + s + s + + + + Delay between slides in seconds + Delay between slides in seconds + + + + Start playing media + Start playing media + + + + Go to Verse + Go to Verse + + PresentationPlugin @@ -2371,302 +2667,6 @@ You can download the latest version from <a href="http://openlp.org/&quo - - ServiceItemEditForm - - - Service Item Maintenance - - - - - Up - - - - - Delete - Delete - - - - Down - - - - - ServiceManager - - - Save Changes to Service? - Save Changes to Service? - - - - Open Service - Open Service - - - - Move to top - Move to top - - - - Create a new service - Create a new service - - - - Save this service - Save this service - - - - Theme: - Theme: - - - - Delete From Service - Delete From Service - - - - &Change Item Theme - &Change Item Theme - - - - Save Service - Save Service - - - - &Live Verse - &Live Verse - - - - New Service - New Service - - - - &Notes - &Notes - - - - Move to end - Move to end - - - - Select a theme for the service - Select a theme for the service - - - - Move up order - Move up order - - - - Move down order - Move down order - - - - Load an existing service - Load an existing service - - - - &Preview Verse - &Preview Verse - - - - &Edit Item - &Edit Item - - - - Move to &top - - - - - Move &up - - - - - Move &down - - - - - Move to &bottom - - - - - &Delete From Service - - - - - &Add New Item - - - - - &Add to Selected Item - - - - - &Maintain Item - - - - - Your service is unsaved, do you want to save those changes before creating a new one? - - - - - OpenLP Service Files (*.osz) - - - - - Your current service is unsaved, do you want to save the changes before opening a new one? - - - - - Error - Error - - - - File is not a valid service. -The content encoding is not UTF-8. - - - - - File is not a valid service. - - - - - Missing Display Handler - - - - - Your item cannot be displayed as there is no handler to display it - - - - - ServiceNoteForm - - - Service Item Notes - Service Item Notes - - - - SettingsForm - - - Configure OpenLP - - - - - SlideController - - - Move to previous - Move to previous - - - - Go to Verse - Go to Verse - - - - Start continuous loop - Start continuous loop - - - - Live - Live - - - - Start playing media - Start playing media - - - - Move to live - Move to live - - - - Preview - Preview - - - - Move to last - Move to last - - - - Edit and re-preview Song - Edit and re-preview Song - - - - Delay between slides in seconds - Delay between slides in seconds - - - - Move to next - Move to next - - - - Move to first - Move to first - - - - Stop continuous loop - Stop continuous loop - - - - s - s - - - - Hide - - - SongUsagePlugin @@ -2710,6 +2710,58 @@ The content encoding is not UTF-8. &Song Usage + + SongUsagePlugin.AuditDeleteDialog + + + Delete Song Usage Data + + + + + SongUsagePlugin.AuditDetailDialog + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + to + + + + Report Location + Report Location + + + + SongUsagePlugin.SongUsageDeleteForm + + + Delete Selected Song Usage Events? + + + + + Are you sure you want to delete selected Song Usage data? + + + + + SongUsagePlugin.SongUsageDetailForm + + + Output File Location + Output File Location + + SongsPlugin @@ -2819,37 +2871,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - - SongsPlugin.AuditDeleteDialog - - - Song Usage Delete - - - - - SongsPlugin.AuditDetailDialog - - - Song Usage Extraction - - - - - Select Date Range - - - - - to - to - - - - Report Location - Report Location - - SongsPlugin.AuthorsForm @@ -2991,37 +3012,37 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Theme Theme - + New &Theme - + Copyright Information Copyright Information - + © - + CCLI Number: CCLI Number: - + Comments Comments - + Theme, Copyright Info && Comments Theme, Copyright Info && Comments @@ -3041,87 +3062,87 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + No Author Selected - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Add Topic - + This topic does not exist, do you want to add it? - + No Topic Selected - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + Add Book - + This song book does not exist, do you want to add it? - + Error Error - + You need to type in a song title. - + You need to type in at least one verse. - + Warning - + You have not added any authors for this song. Do you want to add an author now? - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + This author is already in the list. - + This topic is already in the list. @@ -3449,7 +3470,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Error Error @@ -3484,7 +3505,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Could not save your changes. @@ -3499,87 +3520,66 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Delete Author Delete Author - + Are you sure you want to delete the selected author? - + This author cannot be deleted, they are currently assigned to at least one song. - + No author selected! - + Delete Topic Delete Topic - + Are you sure you want to delete the selected topic? Are you sure you want to delete the selected topic? - + This topic cannot be deleted, it is currently assigned to at least one song. - + No topic selected! No topic selected! - + Delete Book Delete Book - + Are you sure you want to delete the selected book? Are you sure you want to delete the selected book? - + This book cannot be deleted, it is currently assigned to at least one song. - + No book selected! - - SongsPlugin.SongUsageDeleteForm - - - Delete Selected Song Usage Events? - - - - - Are you sure you want to delete selected Song Usage data? - - - - - SongsPlugin.SongUsageDetailForm - - - Output File Location - Output File Location - - SongsPlugin.SongsTab @@ -3652,7 +3652,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Delete Theme - + Error Error @@ -3667,22 +3667,22 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Export Theme - + Theme Exists Theme Exists - + Save Theme - (%s) Save Theme - (%s) - + Select Theme Import File Select Theme Import File - + New Theme New Theme @@ -3772,48 +3772,48 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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? diff --git a/resources/i18n/openlp_en_ZA.ts b/resources/i18n/openlp_en_ZA.ts index 4e2e6f001..6ac46f2ad 100644 --- a/resources/i18n/openlp_en_ZA.ts +++ b/resources/i18n/openlp_en_ZA.ts @@ -2271,6 +2271,302 @@ You can download the latest version from <a href="http://openlp.org/&quo + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + Up + + + + + Delete + + + + + Down + + + + + OpenLP.ServiceManager + + + New Service + New Service + + + + Create a new service + Create a new service + + + + Open Service + Open Service + + + + Load an existing service + + + + + Save Service + Save Service + + + + Save this service + Save this service + + + + Theme: + Theme: + + + + Select a theme for the service + Select a theme for the service. + + + + Move to &top + + + + + Move &up + + + + + Move &down + + + + + Move to &bottom + + + + + &Delete From Service + + + + + &Add New Item + + + + + &Add to Selected Item + + + + + &Edit Item + + + + + &Reorder Item + + + + + &Notes + + + + + &Preview Verse + + + + + &Live Verse + &Live Verse + + + + &Change Item Theme + &Change Item Theme + + + + Save Changes to Service? + Save Changes to Service? + + + + Your service is unsaved, do you want to save those changes before creating a new one? + + + + + OpenLP Service Files (*.osz) + + + + + Your current service is unsaved, do you want to save the changes before opening a new one? + + + + + Error + Error + + + + File is not a valid service. +The content encoding is not UTF-8. + + + + + File is not a valid service. + + + + + Missing Display Handler + + + + + Your item cannot be displayed as there is no handler to display it + + + + + Move item to the top of the service. + + + + + Move item up one position in the service. + + + + + Move item down one position in the service. + + + + + Move item to the end of the service. + + + + + Delete the selected item from the service. + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + Service Item Notes + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + OpenLP.SlideController + + + Live + Live + + + + Preview + Preview + + + + Move to first + + + + + Move to previous + Move to previous + + + + Move to next + Move to next slide. + + + + Move to last + Move to last + + + + Hide + + + + + Move to live + Move to live + + + + Edit and re-preview Song + Edit and re-preview Song. + + + + Start continuous loop + Start continuous loop + + + + Stop continuous loop + + + + + s + + + + + Delay between slides in seconds + Delay between slides in seconds. + + + + Start playing media + Start playing media + + + + Go to Verse + Go to Verse + + PresentationPlugin @@ -2371,302 +2667,6 @@ You can download the latest version from <a href="http://openlp.org/&quo - - ServiceItemEditForm - - - Service Item Maintenance - - - - - Up - - - - - Delete - - - - - Down - - - - - ServiceManager - - - Save Changes to Service? - Save Changes to Service? - - - - Open Service - Open Service - - - - Move to top - Move to top - - - - Create a new service - Create a new service - - - - Save this service - Save this service - - - - Theme: - Theme: - - - - Delete From Service - Delete From Service - - - - &Change Item Theme - &Change Item Theme - - - - Save Service - Save Service - - - - &Live Verse - &Live Verse - - - - New Service - New Service - - - - &Notes - - - - - Move to end - Move to the end - - - - Select a theme for the service - Select a theme for the service. - - - - Move up order - Move up order. - - - - Move down order - - - - - Load an existing service - - - - - &Preview Verse - - - - - &Edit Item - - - - - Move to &top - - - - - Move &up - - - - - Move &down - - - - - Move to &bottom - - - - - &Delete From Service - - - - - &Add New Item - - - - - &Add to Selected Item - - - - - &Maintain Item - - - - - Your service is unsaved, do you want to save those changes before creating a new one? - - - - - OpenLP Service Files (*.osz) - - - - - Your current service is unsaved, do you want to save the changes before opening a new one? - - - - - Error - Error - - - - File is not a valid service. -The content encoding is not UTF-8. - - - - - File is not a valid service. - - - - - Missing Display Handler - - - - - Your item cannot be displayed as there is no handler to display it - - - - - ServiceNoteForm - - - Service Item Notes - Service Item Notes - - - - SettingsForm - - - Configure OpenLP - - - - - SlideController - - - Move to previous - Move to previous - - - - Go to Verse - Go to Verse - - - - Start continuous loop - Start continuous loop - - - - Live - Live - - - - Start playing media - Start playing media - - - - Move to live - Move to live - - - - Preview - Preview - - - - Move to last - Move to last - - - - Edit and re-preview Song - Edit and re-preview Song. - - - - Delay between slides in seconds - Delay between slides in seconds. - - - - Move to next - Move to next slide. - - - - Move to first - - - - - Stop continuous loop - - - - - s - - - - - Hide - - - SongUsagePlugin @@ -2710,6 +2710,58 @@ The content encoding is not UTF-8. + + SongUsagePlugin.AuditDeleteDialog + + + Delete Song Usage Data + + + + + SongUsagePlugin.AuditDetailDialog + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + + + + + Report Location + Report Location + + + + SongUsagePlugin.SongUsageDeleteForm + + + Delete Selected Song Usage Events? + + + + + Are you sure you want to delete selected Song Usage data? + + + + + SongUsagePlugin.SongUsageDetailForm + + + Output File Location + Output File Location + + SongsPlugin @@ -2819,37 +2871,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - - SongsPlugin.AuditDeleteDialog - - - Song Usage Delete - - - - - SongsPlugin.AuditDetailDialog - - - Song Usage Extraction - - - - - Select Date Range - - - - - to - - - - - Report Location - Report Location - - SongsPlugin.AuthorsForm @@ -2991,37 +3012,37 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Theme Theme - + New &Theme - + Copyright Information Copyright Information - + © - + CCLI Number: CCLI Number: - + Comments - + Theme, Copyright Info && Comments @@ -3041,87 +3062,87 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + No Author Selected - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Add Topic - + This topic does not exist, do you want to add it? - + No Topic Selected - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + Add Book - + This song book does not exist, do you want to add it? - + Error Error - + You need to type in a song title. - + You need to type in at least one verse. - + Warning - + You have not added any authors for this song. Do you want to add an author now? - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + This author is already in the list. - + This topic is already in the list. @@ -3449,7 +3470,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Error Error @@ -3484,7 +3505,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Could not save your changes. @@ -3499,87 +3520,66 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Delete Author - + Are you sure you want to delete the selected author? Are you sure you want to delete the selected author? - + This author cannot be deleted, they are currently assigned to at least one song. - + No author selected! No author selected! - + Delete Topic Delete Topic - + Are you sure you want to delete the selected topic? - + This topic cannot be deleted, it is currently assigned to at least one song. - + No topic selected! - + Delete Book Delete Book - + Are you sure you want to delete the selected book? Are you sure you want to delete the selected book? - + This book cannot be deleted, it is currently assigned to at least one song. - + No book selected! No book selected! - - SongsPlugin.SongUsageDeleteForm - - - Delete Selected Song Usage Events? - - - - - Are you sure you want to delete selected Song Usage data? - - - - - SongsPlugin.SongUsageDetailForm - - - Output File Location - Output File Location - - SongsPlugin.SongsTab @@ -3652,7 +3652,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Delete Theme - + Error Error @@ -3667,22 +3667,22 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Export Theme - + Theme Exists Theme Exists - + Save Theme - (%s) Save Theme - (%s) - + Select Theme Import File - + New Theme @@ -3772,48 +3772,48 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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? diff --git a/resources/i18n/openlp_es.ts b/resources/i18n/openlp_es.ts index 8f0be7388..351e91afe 100644 --- a/resources/i18n/openlp_es.ts +++ b/resources/i18n/openlp_es.ts @@ -2271,6 +2271,302 @@ You can download the latest version from <a href="http://openlp.org/&quo + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + Up + + + + + Delete + Eliminar + + + + Down + + + + + OpenLP.ServiceManager + + + New Service + Servicio Nuevo + + + + Create a new service + Crear un servicio nuevo + + + + Open Service + Abrir Servicio + + + + Load an existing service + Abrir un servicio existente + + + + Save Service + Guardar Servicio + + + + Save this service + Guardar este servicio + + + + Theme: + Tema: + + + + Select a theme for the service + Seleccione un tema para el servicio + + + + Move to &top + + + + + Move &up + + + + + Move &down + + + + + Move to &bottom + + + + + &Delete From Service + + + + + &Add New Item + + + + + &Add to Selected Item + + + + + &Edit Item + &Editar Ítem + + + + &Reorder Item + + + + + &Notes + &Notas + + + + &Preview Verse + &Previzualizar Verso + + + + &Live Verse + Verso En &Vivo + + + + &Change Item Theme + &Cambiar Tema de Ítem + + + + Save Changes to Service? + ¿Guardar cambios al Servicio? + + + + Your service is unsaved, do you want to save those changes before creating a new one? + + + + + OpenLP Service Files (*.osz) + + + + + Your current service is unsaved, do you want to save the changes before opening a new one? + + + + + Error + Error + + + + File is not a valid service. +The content encoding is not UTF-8. + + + + + File is not a valid service. + + + + + Missing Display Handler + + + + + Your item cannot be displayed as there is no handler to display it + + + + + Move item to the top of the service. + + + + + Move item up one position in the service. + + + + + Move item down one position in the service. + + + + + Move item to the end of the service. + + + + + Delete the selected item from the service. + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + Notas de Elemento de Servicio + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + OpenLP.SlideController + + + Live + En vivo + + + + Preview + Vista Previa + + + + Move to first + Ir al principio + + + + Move to previous + Regresar al anterior + + + + Move to next + Ir al siguiente + + + + Move to last + Mover al final + + + + Hide + + + + + Move to live + Proyectar en vivo + + + + Edit and re-preview Song + Editar y re-visualizar Canción + + + + Start continuous loop + Iniciar bucle continuo + + + + Stop continuous loop + Detener el bucle + + + + s + s + + + + Delay between slides in seconds + Espera entre diapositivas en segundos + + + + Start playing media + Iniciar la reproducción de medios + + + + Go to Verse + Ir al Verso + + PresentationPlugin @@ -2371,302 +2667,6 @@ You can download the latest version from <a href="http://openlp.org/&quo - - ServiceItemEditForm - - - Service Item Maintenance - - - - - Up - - - - - Delete - Eliminar - - - - Down - - - - - ServiceManager - - - Save Service - Guardar Servicio - - - - Save Changes to Service? - ¿Guardar cambios al Servicio? - - - - Open Service - Abrir Servicio - - - - Move to top - Mover al principio - - - - Create a new service - Crear un servicio nuevo - - - - Save this service - Guardar este servicio - - - - Theme: - Tema: - - - - Delete From Service - Eliminar Del Servicio - - - - &Change Item Theme - &Cambiar Tema de Ítem - - - - &Preview Verse - &Previzualizar Verso - - - - &Live Verse - Verso En &Vivo - - - - New Service - Servicio Nuevo - - - - &Notes - &Notas - - - - Select a theme for the service - Seleccione un tema para el servicio - - - - Move up order - Mover hacia arriba - - - - Move down order - Mover hacia abajo - - - - Load an existing service - Abrir un servicio existente - - - - Move to end - Mover al final - - - - &Edit Item - &Editar Ítem - - - - Move to &top - - - - - Move &up - - - - - Move &down - - - - - Move to &bottom - - - - - &Delete From Service - - - - - &Add New Item - - - - - &Add to Selected Item - - - - - &Maintain Item - - - - - Your service is unsaved, do you want to save those changes before creating a new one? - - - - - OpenLP Service Files (*.osz) - - - - - Your current service is unsaved, do you want to save the changes before opening a new one? - - - - - Error - Error - - - - File is not a valid service. -The content encoding is not UTF-8. - - - - - File is not a valid service. - - - - - Missing Display Handler - - - - - Your item cannot be displayed as there is no handler to display it - - - - - ServiceNoteForm - - - Service Item Notes - Notas de Elemento de Servicio - - - - SettingsForm - - - Configure OpenLP - - - - - SlideController - - - Move to previous - Regresar al anterior - - - - Edit and re-preview Song - Editar y re-visualizar Canción - - - - Delay between slides in seconds - Espera entre diapositivas en segundos - - - - Go to Verse - Ir al Verso - - - - Start continuous loop - Iniciar bucle continuo - - - - Live - En vivo - - - - Start playing media - Iniciar la reproducción de medios - - - - Move to live - Proyectar en vivo - - - - Move to last - Mover al final - - - - Move to next - Ir al siguiente - - - - Move to first - Ir al principio - - - - Preview - Vista Previa - - - - Stop continuous loop - Detener el bucle - - - - s - s - - - - Hide - - - SongUsagePlugin @@ -2710,6 +2710,58 @@ The content encoding is not UTF-8. &Uso de las Canciones + + SongUsagePlugin.AuditDeleteDialog + + + Delete Song Usage Data + + + + + SongUsagePlugin.AuditDetailDialog + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + hasta + + + + Report Location + Ubicación de Reporte + + + + SongUsagePlugin.SongUsageDeleteForm + + + Delete Selected Song Usage Events? + + + + + Are you sure you want to delete selected Song Usage data? + + + + + SongUsagePlugin.SongUsageDetailForm + + + Output File Location + Archivo de Salida + + SongsPlugin @@ -2819,37 +2871,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - - SongsPlugin.AuditDeleteDialog - - - Song Usage Delete - - - - - SongsPlugin.AuditDetailDialog - - - Song Usage Extraction - - - - - Select Date Range - - - - - to - hasta - - - - Report Location - Ubicación de Reporte - - SongsPlugin.AuthorsForm @@ -2991,37 +3012,37 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Theme Tema - + New &Theme - + Copyright Information Información de Derechos de Autor - + © - + CCLI Number: Número CCLI: - + Comments Comentarios - + Theme, Copyright Info && Comments Tema, Derechos de Autor && Comentarios @@ -3041,87 +3062,87 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + No Author Selected - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Add Topic - + This topic does not exist, do you want to add it? - + No Topic Selected - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + Add Book - + This song book does not exist, do you want to add it? - + Error Error - + You need to type in a song title. - + You need to type in at least one verse. - + Warning - + You have not added any authors for this song. Do you want to add an author now? - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + This author is already in the list. - + This topic is already in the list. @@ -3449,7 +3470,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Error Error @@ -3484,7 +3505,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Could not save your changes. @@ -3499,87 +3520,66 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Delete Author Borrar Autor - + Are you sure you want to delete the selected author? ¿Está seguro que desea eliminar el autor seleccionado? - + This author cannot be deleted, they are currently assigned to at least one song. - + No author selected! ¡Ningún autor seleccionado! - + Delete Topic Borrar Categoría - + Are you sure you want to delete the selected topic? ¿Está seguro que desea eliminar la categoría seleccionada? - + This topic cannot be deleted, it is currently assigned to at least one song. - + No topic selected! ¡No seleccionó la categoría! - + Delete Book Eliminar Libro - + Are you sure you want to delete the selected book? ¿Está seguro de que quiere eliminar el libro seleccionado? - + This book cannot be deleted, it is currently assigned to at least one song. - + No book selected! ¡Ningún libro seleccionado! - - SongsPlugin.SongUsageDeleteForm - - - Delete Selected Song Usage Events? - - - - - Are you sure you want to delete selected Song Usage data? - - - - - SongsPlugin.SongUsageDetailForm - - - Output File Location - Archivo de Salida - - SongsPlugin.SongsTab @@ -3652,7 +3652,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Eliminar Tema - + Error Error @@ -3667,22 +3667,22 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R 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 @@ -3772,48 +3772,48 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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? diff --git a/resources/i18n/openlp_et.ts b/resources/i18n/openlp_et.ts index 70811cb25..e244f8adf 100644 --- a/resources/i18n/openlp_et.ts +++ b/resources/i18n/openlp_et.ts @@ -2304,6 +2304,302 @@ You can download the latest version from <a href="http://openlp.org/&quo + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + Up + Üles + + + + Delete + Kustuta + + + + Down + Alla + + + + OpenLP.ServiceManager + + + New Service + Uus teenistus + + + + Create a new service + Uue teenistuse loomine + + + + Open Service + Teenistuse avamine + + + + Load an existing service + Välise teenistuse laadimine + + + + Save Service + Salvesta teenistus + + + + Save this service + Selle teenistuse salvestamine + + + + Theme: + Kujundus: + + + + Select a theme for the service + + + + + Move to &top + Liiguta ü&lemiseks + + + + Move &up + Liiguta &üles + + + + Move &down + Liiguta &alla + + + + Move to &bottom + Liiguta &alumiseks + + + + &Delete From Service + &Kustuta teenistusest + + + + &Add New Item + &Lisa uus element + + + + &Add to Selected Item + &Lisa valitud elemendile + + + + &Edit Item + &Muuda kirjet + + + + &Reorder Item + + + + + &Notes + &Märkmed + + + + &Preview Verse + &Salmi eelvaatlus + + + + &Live Verse + &Otsesalm + + + + &Change Item Theme + + + + + Save Changes to Service? + Kas salvestada teenistusse tehtud muudatused? + + + + Your service is unsaved, do you want to save those changes before creating a new one? + See teenistus pole salvestatud, kas tahad selle uue avamist salvestada? + + + + OpenLP Service Files (*.osz) + + + + + Your current service is unsaved, do you want to save the changes before opening a new one? + See teenistus pole salvestatud, kas tahad enne uue avamist muudatused salvestada? + + + + Error + Viga + + + + File is not a valid service. +The content encoding is not UTF-8. + + + + + File is not a valid service. + + + + + Missing Display Handler + + + + + Your item cannot be displayed as there is no handler to display it + Seda elementi pole võimalik näidata ekraanil, kuna puudub seda käsitsev programm + + + + Move item to the top of the service. + + + + + Move item up one position in the service. + + + + + Move item down one position in the service. + + + + + Move item to the end of the service. + + + + + Delete the selected item from the service. + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + Teenistuse elemendi märkmed + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + OpenLP.SlideController + + + Live + Ekraan + + + + Preview + Eelvaade + + + + Move to first + Liikumine esimesele + + + + Move to previous + Eelmisele liikumine + + + + Move to next + Liikumine järgmisele + + + + Move to last + Liikumine viimasele + + + + Hide + + + + + Move to live + Tõsta ekraanile + + + + Edit and re-preview Song + Muuda ja kuva laulu eelvaade uuesti + + + + Start continuous loop + Katkematu korduse alustamine + + + + Stop continuous loop + Katkematu korduse lõpetamine + + + + s + s + + + + Delay between slides in seconds + Viivitus slaidide vahel sekundites + + + + Start playing media + Meediaesituse alustamine + + + + Go to Verse + Liikumine salmile + + PresentationPlugin @@ -2404,302 +2700,6 @@ You can download the latest version from <a href="http://openlp.org/&quo - - ServiceItemEditForm - - - Service Item Maintenance - Teenistuse elementide haldus - - - - Up - Üles - - - - Delete - Kustuta - - - - Down - Alla - - - - ServiceManager - - - Save Changes to Service? - Kas salvestada teenistusse tehtud muudatused? - - - - Open Service - Teenistuse avamine - - - - Move to top - Tõsta üles - - - - Save Service - Salvesta teenistus - - - - Create a new service - Uue teenistuse loomine - - - - Save this service - Selle teenistuse salvestamine - - - - Theme: - Kujundus: - - - - Delete From Service - Teenistusest kustutamine - - - - &Preview Verse - &Salmi eelvaatlus - - - - &Live Verse - &Otsesalm - - - - Move to &top - Liiguta ü&lemiseks - - - - New Service - Uus teenistus - - - - &Notes - &Märkmed - - - - &Delete From Service - &Kustuta teenistusest - - - - Move up order - Järjekorras üles liigutamine - - - - Move down order - Järjekorras alla liigutamine - - - - Move &down - Liiguta &alla - - - - Load an existing service - Välise teenistuse laadimine - - - - Move to end - Viimaseks tõstmine - - - - &Maintain Item - &Halda elementi - - - - Move &up - Liiguta &üles - - - - &Edit Item - &Muuda kirjet - - - - Move to &bottom - Liiguta &alumiseks - - - - &Add New Item - &Lisa uus element - - - - &Add to Selected Item - &Lisa valitud elemendile - - - - Your service is unsaved, do you want to save those changes before creating a new one? - See teenistus pole salvestatud, kas tahad selle uue avamist salvestada? - - - - Your current service is unsaved, do you want to save the changes before opening a new one? - See teenistus pole salvestatud, kas tahad enne uue avamist muudatused salvestada? - - - - Missing Display Handler - - - - - Your item cannot be displayed as there is no handler to display it - Seda elementi pole võimalik näidata ekraanil, kuna puudub seda käsitsev programm - - - - Select a theme for the service - - - - - &Change Item Theme - - - - - OpenLP Service Files (*.osz) - - - - - Error - Viga - - - - File is not a valid service. -The content encoding is not UTF-8. - - - - - File is not a valid service. - - - - - ServiceNoteForm - - - Service Item Notes - Teenistuse elemendi märkmed - - - - SettingsForm - - - Configure OpenLP - - - - - SlideController - - - Move to previous - Eelmisele liikumine - - - - Go to Verse - Liikumine salmile - - - - Start continuous loop - Katkematu korduse alustamine - - - - Live - Ekraan - - - - Start playing media - Meediaesituse alustamine - - - - Move to live - Tõsta ekraanile - - - - Move to last - Liikumine viimasele - - - - Move to next - Liikumine järgmisele - - - - Move to first - Liikumine esimesele - - - - Delay between slides in seconds - Viivitus slaidide vahel sekundites - - - - Preview - Eelvaade - - - - Stop continuous loop - Katkematu korduse lõpetamine - - - - s - s - - - - Edit and re-preview Song - Muuda ja kuva laulu eelvaade uuesti - - - - Hide - - - SongUsagePlugin @@ -2743,6 +2743,58 @@ The content encoding is not UTF-8. + + SongUsagePlugin.AuditDeleteDialog + + + Delete Song Usage Data + + + + + SongUsagePlugin.AuditDetailDialog + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + + + + + Report Location + + + + + SongUsagePlugin.SongUsageDeleteForm + + + Delete Selected Song Usage Events? + + + + + Are you sure you want to delete selected Song Usage data? + + + + + SongUsagePlugin.SongUsageDetailForm + + + Output File Location + + + SongsPlugin @@ -2852,37 +2904,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - - SongsPlugin.AuditDeleteDialog - - - Song Usage Delete - - - - - SongsPlugin.AuditDetailDialog - - - Select Date Range - - - - - to - - - - - Report Location - - - - - Song Usage Extraction - - - SongsPlugin.AuthorsForm @@ -3009,27 +3030,27 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Laulik - + Theme Kujundus - + Copyright Information Autoriõiguse andmed - + CCLI Number: CCLI number: - + Comments Kommentaarid - + Theme, Copyright Info && Comments Kujundus, autoriõigus && kommentaarid @@ -3044,47 +3065,47 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + No Author Selected - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Add Topic - + This topic does not exist, do you want to add it? - + No Topic Selected - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + Add Book - + This song book does not exist, do you want to add it? - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. @@ -3094,12 +3115,12 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + New &Theme - + © @@ -3109,32 +3130,32 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Error Viga - + You need to type in a song title. - + You need to type in at least one verse. - + Warning - + You have not added any authors for this song. Do you want to add an author now? - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? @@ -3149,12 +3170,12 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + This author is already in the list. - + This topic is already in the list. @@ -3477,47 +3498,47 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R &Kustuta - + Delete Author - + Delete Topic - + Delete Book - + Error Viga - + Are you sure you want to delete the selected author? - + No author selected! - + Are you sure you want to delete the selected topic? - + No topic selected! - + Are you sure you want to delete the selected book? @@ -3557,7 +3578,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Could not save your changes. @@ -3572,47 +3593,26 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + This author cannot be deleted, they are currently assigned to at least one song. - + This topic cannot be deleted, it is currently assigned to at least one song. - + This book cannot be deleted, it is currently assigned to at least one song. - + No book selected! - - SongsPlugin.SongUsageDeleteForm - - - Delete Selected Song Usage Events? - - - - - Are you sure you want to delete selected Song Usage data? - - - - - SongsPlugin.SongUsageDetailForm - - - Output File Location - - - SongsPlugin.SongsTab @@ -3685,7 +3685,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Teema kustutamine - + Error Viga @@ -3705,32 +3705,32 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R 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. @@ -3795,32 +3795,32 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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. @@ -3846,7 +3846,7 @@ The content encoding is not UTF-8. - + A theme with this name already exists. Would you like to overwrite it? diff --git a/resources/i18n/openlp_hu.ts b/resources/i18n/openlp_hu.ts index 5f5e01045..ab4ebfee7 100644 --- a/resources/i18n/openlp_hu.ts +++ b/resources/i18n/openlp_hu.ts @@ -2431,6 +2431,302 @@ You can download the latest version from <a href="http://openlp.org/&quo + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + Up + Fel + + + + Delete + Törlés + + + + Down + Le + + + + OpenLP.ServiceManager + + + New Service + Új szolgálat + + + + Create a new service + Új szolgálat létrehozása + + + + Open Service + Szolgálat megnyitása + + + + Load an existing service + Egy meglévő szolgálat betöltése + + + + Save Service + Szolgálat mentése + + + + Save this service + Aktuális szolgálat mentése + + + + Theme: + Téma: + + + + Select a theme for the service + + + + + Move to &top + Mozgatás &felülre + + + + Move &up + Mozgatás f&eljebb + + + + Move &down + Mozgatás &lejjebb + + + + Move to &bottom + Mozgatás &alulra + + + + &Delete From Service + &Törlés a szolgálatból + + + + &Add New Item + Új elem &hozzáadása + + + + &Add to Selected Item + &Hozzáadás a kiválasztott elemhez + + + + &Edit Item + &Elem szerkesztése + + + + &Reorder Item + + + + + &Notes + &Jegyzetek + + + + &Preview Verse + Versszak &előnézete + + + + &Live Verse + &Adásban lévő versszak + + + + &Change Item Theme + + + + + Save Changes to Service? + Változások mentése a szolgálatban? + + + + Your service is unsaved, do you want to save those changes before creating a new one? + A szolgálat nincs elmentve, szeretné menteni, mielőtt az újat létrehozná? + + + + OpenLP Service Files (*.osz) + + + + + Your current service is unsaved, do you want to save the changes before opening a new one? + A szolgálat nincs elmentve, szeretné menteni, mielőtt az újat megnyitná? + + + + Error + Hiba + + + + File is not a valid service. +The content encoding is not UTF-8. + + + + + File is not a valid service. + + + + + Missing Display Handler + Hiányzó képernyő kezelő + + + + Your item cannot be displayed as there is no handler to display it + Az elemet nem lehet megjeleníteni, mert nincs kezelő, amely megjelenítené + + + + Move item to the top of the service. + + + + + Move item up one position in the service. + + + + + Move item down one position in the service. + + + + + Move item to the end of the service. + + + + + Delete the selected item from the service. + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + Szolgálat elem jegyzetek + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + OpenLP.SlideController + + + Live + Egyenes adás + + + + Preview + Előnézet + + + + Move to first + Mozgatás az elsőre + + + + Move to previous + Mozgatás az előzőre + + + + Move to next + Mozgatás a következőre + + + + Move to last + Mozgatás az utolsóra + + + + Hide + + + + + Move to live + Mozgatás az egyenes adásban lévőre + + + + Edit and re-preview Song + Dal szerkesztése, majd újra az előnézet megnyitása + + + + Start continuous loop + Folyamatos vetítés indítása + + + + Stop continuous loop + Folyamatos vetítés leállítása + + + + s + mp + + + + Delay between slides in seconds + Diák közötti késleltetés másodpercben + + + + Start playing media + Médialejátszás indítása + + + + Go to Verse + Ugrás versszakra + + PresentationPlugin @@ -2531,302 +2827,6 @@ You can download the latest version from <a href="http://openlp.org/&quo - - ServiceItemEditForm - - - Service Item Maintenance - Szolgálati elem kezelése - - - - Up - Fel - - - - Delete - Törlés - - - - Down - Le - - - - ServiceManager - - - Save Changes to Service? - Változások mentése a szolgálatban? - - - - Open Service - Szolgálat megnyitása - - - - Move to top - Mozgatás felülre - - - - Create a new service - Új szolgálat létrehozása - - - - Save this service - Aktuális szolgálat mentése - - - - Theme: - Téma: - - - - Delete From Service - Törlés a szolgálatból - - - - Save Service - Szolgálat mentése - - - - &Live Verse - &Adásban lévő versszak - - - - New Service - Új szolgálat - - - - &Notes - &Jegyzetek - - - - Move to end - Mozgatás a végére - - - - Move up order - Mozgatás feljebb a sorban - - - - Move down order - Mozgatás lejjebb a sorban - - - - Load an existing service - Egy meglévő szolgálat betöltése - - - - &Preview Verse - Versszak &előnézete - - - - &Edit Item - &Elem szerkesztése - - - - Move to &top - Mozgatás &felülre - - - - Move &up - Mozgatás f&eljebb - - - - Move &down - Mozgatás &lejjebb - - - - Move to &bottom - Mozgatás &alulra - - - - &Delete From Service - &Törlés a szolgálatból - - - - &Add New Item - Új elem &hozzáadása - - - - &Add to Selected Item - &Hozzáadás a kiválasztott elemhez - - - - &Maintain Item - Elem &karbantartása - - - - Your service is unsaved, do you want to save those changes before creating a new one? - A szolgálat nincs elmentve, szeretné menteni, mielőtt az újat létrehozná? - - - - Your current service is unsaved, do you want to save the changes before opening a new one? - A szolgálat nincs elmentve, szeretné menteni, mielőtt az újat megnyitná? - - - - Missing Display Handler - Hiányzó képernyő kezelő - - - - Your item cannot be displayed as there is no handler to display it - Az elemet nem lehet megjeleníteni, mert nincs kezelő, amely megjelenítené - - - - Select a theme for the service - - - - - &Change Item Theme - - - - - OpenLP Service Files (*.osz) - - - - - Error - Hiba - - - - File is not a valid service. -The content encoding is not UTF-8. - - - - - File is not a valid service. - - - - - ServiceNoteForm - - - Service Item Notes - Szolgálat elem jegyzetek - - - - SettingsForm - - - Configure OpenLP - - - - - SlideController - - - Move to previous - Mozgatás az előzőre - - - - Go to Verse - Ugrás versszakra - - - - Start continuous loop - Folyamatos vetítés indítása - - - - Live - Egyenes adás - - - - Start playing media - Médialejátszás indítása - - - - Move to live - Mozgatás az egyenes adásban lévőre - - - - Preview - Előnézet - - - - Move to last - Mozgatás az utolsóra - - - - Edit and re-preview Song - Dal szerkesztése, majd újra az előnézet megnyitása - - - - Delay between slides in seconds - Diák közötti késleltetés másodpercben - - - - Move to next - Mozgatás a következőre - - - - Move to first - Mozgatás az elsőre - - - - Stop continuous loop - Folyamatos vetítés leállítása - - - - s - mp - - - - Hide - - - SongUsagePlugin @@ -2870,6 +2870,58 @@ The content encoding is not UTF-8. Élő dalstatisztika rögzítésének indítása/leállítása + + SongUsagePlugin.AuditDeleteDialog + + + Delete Song Usage Data + + + + + SongUsagePlugin.AuditDetailDialog + + + Song Usage Extraction + Dalstatisztika kicsomagolása + + + + Select Date Range + Időintervallum megadása + + + + to + + + + + Report Location + Helyszín jelentése + + + + SongUsagePlugin.SongUsageDeleteForm + + + Delete Selected Song Usage Events? + Valóban törölhetők a kiválasztott dalstatisztika események? + + + + Are you sure you want to delete selected Song Usage data? + Valóban törölhetők a kiválasztott dalstatisztika adatok? + + + + SongUsagePlugin.SongUsageDetailForm + + + Output File Location + Kimeneti fájl elérési útvonala + + SongsPlugin @@ -2979,37 +3031,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - - SongsPlugin.AuditDeleteDialog - - - Song Usage Delete - Dalstatisztika törlése - - - - SongsPlugin.AuditDetailDialog - - - Song Usage Extraction - Dalstatisztika kicsomagolása - - - - Select Date Range - Időintervallum megadása - - - - to - - - - - Report Location - Helyszín jelentése - - SongsPlugin.AuthorsForm @@ -3151,37 +3172,37 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Theme Téma - + New &Theme - + Copyright Information Szerzői jogi információ - + © - + CCLI Number: CCLI szám: - + Comments Megjegyzések - + Theme, Copyright Info && Comments Téma, szerzői jogi infók és megjegyzések @@ -3201,87 +3222,87 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + No Author Selected - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Add Topic - + This topic does not exist, do you want to add it? - + No Topic Selected - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + Add Book - + This song book does not exist, do you want to add it? - + Error Hiba - + You need to type in a song title. - + You need to type in at least one verse. - + Warning - + You have not added any authors for this song. Do you want to add an author now? - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + This author is already in the list. - + This topic is already in the list. @@ -3609,7 +3630,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R &Törlés - + Error Hiba @@ -3644,7 +3665,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Could not save your changes. @@ -3659,87 +3680,66 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Delete Author Szerző törlése - + Are you sure you want to delete the selected author? A kiválasztott szerző biztosan törölhető? - + This author cannot be deleted, they are currently assigned to at least one song. - + No author selected! Nincs kiválasztott szerző! - + Delete Topic Témakör törlése - + Are you sure you want to delete the selected topic? A kiválasztott témakör biztosan törölhető? - + This topic cannot be deleted, it is currently assigned to at least one song. - + No topic selected! Nincs kiválasztott témakör! - + Delete Book Könyv törlése - + Are you sure you want to delete the selected book? A kiválasztott könyv biztosan törölhető? - + This book cannot be deleted, it is currently assigned to at least one song. - + No book selected! Nincs kiválasztott könyv! - - SongsPlugin.SongUsageDeleteForm - - - Delete Selected Song Usage Events? - Valóban törölhetők a kiválasztott dalstatisztika események? - - - - Are you sure you want to delete selected Song Usage data? - Valóban törölhetők a kiválasztott dalstatisztika adatok? - - - - SongsPlugin.SongUsageDetailForm - - - Output File Location - Kimeneti fájl elérési útvonala - - SongsPlugin.SongsTab @@ -3812,7 +3812,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Téma törlése - + Error Hiba @@ -3827,22 +3827,22 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R 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 @@ -3852,12 +3852,12 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R 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. @@ -3942,38 +3942,38 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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? diff --git a/resources/i18n/openlp_ko.ts b/resources/i18n/openlp_ko.ts index 16cb6d358..58c2807fd 100644 --- a/resources/i18n/openlp_ko.ts +++ b/resources/i18n/openlp_ko.ts @@ -2271,6 +2271,302 @@ You can download the latest version from <a href="http://openlp.org/&quo + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + Up + + + + + Delete + + + + + Down + + + + + OpenLP.ServiceManager + + + New Service + + + + + Create a new service + + + + + Open Service + + + + + Load an existing service + + + + + Save Service + + + + + Save this service + + + + + Theme: + + + + + Select a theme for the service + + + + + Move to &top + + + + + Move &up + + + + + Move &down + + + + + Move to &bottom + + + + + &Delete From Service + + + + + &Add New Item + + + + + &Add to Selected Item + + + + + &Edit Item + + + + + &Reorder Item + + + + + &Notes + + + + + &Preview Verse + + + + + &Live Verse + + + + + &Change Item Theme + + + + + Save Changes to Service? + + + + + Your service is unsaved, do you want to save those changes before creating a new one? + + + + + OpenLP Service Files (*.osz) + + + + + Your current service is unsaved, do you want to save the changes before opening a new one? + + + + + Error + + + + + File is not a valid service. +The content encoding is not UTF-8. + + + + + File is not a valid service. + + + + + Missing Display Handler + + + + + Your item cannot be displayed as there is no handler to display it + + + + + Move item to the top of the service. + + + + + Move item up one position in the service. + + + + + Move item down one position in the service. + + + + + Move item to the end of the service. + + + + + Delete the selected item from the service. + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + OpenLP.SlideController + + + Live + + + + + Preview + + + + + Move to first + + + + + Move to previous + + + + + Move to next + + + + + Move to last + + + + + Hide + + + + + Move to live + + + + + Edit and re-preview Song + + + + + Start continuous loop + + + + + Stop continuous loop + + + + + s + + + + + Delay between slides in seconds + + + + + Start playing media + + + + + Go to Verse + + + PresentationPlugin @@ -2371,302 +2667,6 @@ You can download the latest version from <a href="http://openlp.org/&quo - - ServiceItemEditForm - - - Service Item Maintenance - - - - - Up - - - - - Delete - - - - - Down - - - - - ServiceManager - - - Save Changes to Service? - - - - - Open Service - - - - - Move to top - - - - - Create a new service - - - - - Save this service - - - - - Theme: - - - - - Delete From Service - - - - - &Change Item Theme - - - - - Save Service - - - - - OpenLP Service Files (*.osz) - - - - - &Live Verse - - - - - Move to &top - - - - - New Service - - - - - &Notes - - - - - Move to end - - - - - &Delete From Service - - - - - Select a theme for the service - - - - - Move up order - - - - - Move down order - - - - - Move &down - - - - - Load an existing service - - - - - &Preview Verse - - - - - Move &up - - - - - &Edit Item - - - - - Move to &bottom - - - - - &Add New Item - - - - - &Add to Selected Item - - - - - &Maintain Item - - - - - Your service is unsaved, do you want to save those changes before creating a new one? - - - - - Your current service is unsaved, do you want to save the changes before opening a new one? - - - - - Error - - - - - File is not a valid service. -The content encoding is not UTF-8. - - - - - File is not a valid service. - - - - - Missing Display Handler - - - - - Your item cannot be displayed as there is no handler to display it - - - - - ServiceNoteForm - - - Service Item Notes - - - - - SettingsForm - - - Configure OpenLP - - - - - SlideController - - - Move to previous - - - - - Go to Verse - - - - - Start continuous loop - - - - - Live - - - - - Start playing media - - - - - Move to live - - - - - Preview - - - - - Move to last - - - - - Edit and re-preview Song - - - - - Delay between slides in seconds - - - - - Move to next - - - - - Move to first - - - - - Stop continuous loop - - - - - s - - - - - Hide - - - SongUsagePlugin @@ -2710,6 +2710,58 @@ The content encoding is not UTF-8. + + SongUsagePlugin.AuditDeleteDialog + + + Delete Song Usage Data + + + + + SongUsagePlugin.AuditDetailDialog + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + + + + + Report Location + + + + + SongUsagePlugin.SongUsageDeleteForm + + + Delete Selected Song Usage Events? + + + + + Are you sure you want to delete selected Song Usage data? + + + + + SongUsagePlugin.SongUsageDetailForm + + + Output File Location + + + SongsPlugin @@ -2819,37 +2871,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - - SongsPlugin.AuditDeleteDialog - - - Song Usage Delete - - - - - SongsPlugin.AuditDetailDialog - - - Song Usage Extraction - - - - - Select Date Range - - - - - to - - - - - Report Location - - - SongsPlugin.AuthorsForm @@ -2991,37 +3012,37 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Theme - + New &Theme - + Copyright Information - + © - + CCLI Number: - + Comments - + Theme, Copyright Info && Comments @@ -3041,87 +3062,87 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + No Author Selected - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Add Topic - + This topic does not exist, do you want to add it? - + No Topic Selected - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + Add Book - + This song book does not exist, do you want to add it? - + Error - + You need to type in a song title. - + You need to type in at least one verse. - + Warning - + You have not added any authors for this song. Do you want to add an author now? - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + This author is already in the list. - + This topic is already in the list. @@ -3449,7 +3470,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Error @@ -3484,7 +3505,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Could not save your changes. @@ -3499,87 +3520,66 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Delete Author - + Are you sure you want to delete the selected author? - + This author cannot be deleted, they are currently assigned to at least one song. - + No author selected! - + Delete Topic - + Are you sure you want to delete the selected topic? - + This topic cannot be deleted, it is currently assigned to at least one song. - + No topic selected! - + Delete Book - + Are you sure you want to delete the selected book? - + This book cannot be deleted, it is currently assigned to at least one song. - + No book selected! - - SongsPlugin.SongUsageDeleteForm - - - Delete Selected Song Usage Events? - - - - - Are you sure you want to delete selected Song Usage data? - - - - - SongsPlugin.SongUsageDetailForm - - - Output File Location - - - SongsPlugin.SongsTab @@ -3652,12 +3652,12 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Error - + File is not a valid theme. @@ -3677,27 +3677,27 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Theme Exists - + Save Theme - (%s) - + Select Theme Import File - + New Theme - + You have not selected a theme. @@ -3782,38 +3782,38 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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? diff --git a/resources/i18n/openlp_nb.ts b/resources/i18n/openlp_nb.ts index da8f4dc89..1099391b9 100644 --- a/resources/i18n/openlp_nb.ts +++ b/resources/i18n/openlp_nb.ts @@ -2271,6 +2271,302 @@ You can download the latest version from <a href="http://openlp.org/&quo + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + Up + + + + + Delete + + + + + Down + + + + + OpenLP.ServiceManager + + + New Service + Ny møteplan + + + + Create a new service + Opprett ny møteplan + + + + Open Service + Åpne møteplan + + + + Load an existing service + + + + + Save Service + Lagre møte + + + + Save this service + Lagre møteplan + + + + Theme: + Tema: + + + + Select a theme for the service + + + + + Move to &top + Flytt til &toppen + + + + Move &up + + + + + Move &down + + + + + Move to &bottom + + + + + &Delete From Service + + + + + &Add New Item + + + + + &Add to Selected Item + + + + + &Edit Item + + + + + &Reorder Item + + + + + &Notes + &Notis + + + + &Preview Verse + &Forhåndsvis vers + + + + &Live Verse + &Direktevers + + + + &Change Item Theme + &Bytt objekttema + + + + Save Changes to Service? + Lagre endringer til møteplanen? + + + + Your service is unsaved, do you want to save those changes before creating a new one? + + + + + OpenLP Service Files (*.osz) + OpenLP møteplan (*.osz) + + + + Your current service is unsaved, do you want to save the changes before opening a new one? + + + + + Error + Feil + + + + File is not a valid service. +The content encoding is not UTF-8. + + + + + File is not a valid service. + + + + + Missing Display Handler + + + + + Your item cannot be displayed as there is no handler to display it + + + + + Move item to the top of the service. + + + + + Move item up one position in the service. + + + + + Move item down one position in the service. + + + + + Move item to the end of the service. + + + + + Delete the selected item from the service. + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + OpenLP.SlideController + + + Live + Direkte + + + + Preview + + + + + Move to first + + + + + Move to previous + Flytt til forrige + + + + Move to next + + + + + Move to last + Flytt til sist + + + + Hide + + + + + Move to live + + + + + Edit and re-preview Song + Endre og forhåndsvis sang + + + + Start continuous loop + Start kontinuerlig løkke + + + + Stop continuous loop + + + + + s + + + + + Delay between slides in seconds + Forsinkelse mellom lysbilder i sekund + + + + Start playing media + Start avspilling av media + + + + Go to Verse + Gå til vers + + PresentationPlugin @@ -2371,302 +2667,6 @@ You can download the latest version from <a href="http://openlp.org/&quo - - ServiceItemEditForm - - - Service Item Maintenance - - - - - Up - - - - - Delete - - - - - Down - - - - - ServiceManager - - - Save Service - Lagre møte - - - - Save Changes to Service? - Lagre endringer til møteplanen? - - - - Open Service - Åpne møteplan - - - - Move to top - Flytt til toppen - - - - Create a new service - Opprett ny møteplan - - - - Save this service - Lagre møteplan - - - - Theme: - Tema: - - - - Delete From Service - Slett fra møteplan - - - - &Change Item Theme - &Bytt objekttema - - - - &Preview Verse - &Forhåndsvis vers - - - - OpenLP Service Files (*.osz) - OpenLP møteplan (*.osz) - - - - &Live Verse - &Direktevers - - - - Move to &top - Flytt til &toppen - - - - New Service - Ny møteplan - - - - &Notes - &Notis - - - - &Delete From Service - - - - - Select a theme for the service - - - - - Move up order - - - - - Move down order - - - - - Move &down - - - - - Load an existing service - - - - - Move to end - - - - - Move &up - - - - - &Edit Item - - - - - Move to &bottom - - - - - &Add New Item - - - - - &Add to Selected Item - - - - - &Maintain Item - - - - - Your service is unsaved, do you want to save those changes before creating a new one? - - - - - Your current service is unsaved, do you want to save the changes before opening a new one? - - - - - Error - Feil - - - - File is not a valid service. -The content encoding is not UTF-8. - - - - - File is not a valid service. - - - - - Missing Display Handler - - - - - Your item cannot be displayed as there is no handler to display it - - - - - ServiceNoteForm - - - Service Item Notes - - - - - SettingsForm - - - Configure OpenLP - - - - - SlideController - - - Move to previous - Flytt til forrige - - - - Edit and re-preview Song - Endre og forhåndsvis sang - - - - Delay between slides in seconds - Forsinkelse mellom lysbilder i sekund - - - - Go to Verse - Gå til vers - - - - Start continuous loop - Start kontinuerlig løkke - - - - Live - Direkte - - - - Start playing media - Start avspilling av media - - - - Move to live - - - - - Move to last - Flytt til sist - - - - Move to next - - - - - Move to first - - - - - Preview - - - - - Stop continuous loop - - - - - s - - - - - Hide - - - SongUsagePlugin @@ -2710,6 +2710,58 @@ The content encoding is not UTF-8. + + SongUsagePlugin.AuditDeleteDialog + + + Delete Song Usage Data + + + + + SongUsagePlugin.AuditDetailDialog + + + Song Usage Extraction + + + + + Select Date Range + Velg dato-område + + + + to + til + + + + Report Location + + + + + SongUsagePlugin.SongUsageDeleteForm + + + Delete Selected Song Usage Events? + + + + + Are you sure you want to delete selected Song Usage data? + + + + + SongUsagePlugin.SongUsageDetailForm + + + Output File Location + + + SongsPlugin @@ -2819,37 +2871,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - - SongsPlugin.AuditDeleteDialog - - - Song Usage Delete - Slett registrert sangbruk - - - - SongsPlugin.AuditDetailDialog - - - Song Usage Extraction - - - - - Select Date Range - Velg dato-område - - - - to - til - - - - Report Location - - - SongsPlugin.AuthorsForm @@ -2991,37 +3012,37 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Theme Tema - + New &Theme - + Copyright Information Copyright-informasjon - + © - + CCLI Number: CCLI-nummer: - + Comments - + Theme, Copyright Info && Comments @@ -3041,87 +3062,87 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + No Author Selected - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Add Topic - + This topic does not exist, do you want to add it? - + No Topic Selected - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + Add Book - + This song book does not exist, do you want to add it? - + Error Feil - + You need to type in a song title. - + You need to type in at least one verse. - + Warning - + You have not added any authors for this song. Do you want to add an author now? - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + This author is already in the list. - + This topic is already in the list. @@ -3449,7 +3470,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Error Feil @@ -3484,7 +3505,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Could not save your changes. @@ -3499,87 +3520,66 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Delete Author - + Are you sure you want to delete the selected author? Er du sikker på at du vil slette den valgte forfatteren? - + This author cannot be deleted, they are currently assigned to at least one song. - + No author selected! Ingen forfatter er valgt! - + Delete Topic Slett emne - + Are you sure you want to delete the selected topic? - + This topic cannot be deleted, it is currently assigned to at least one song. - + No topic selected! - + Delete Book Slett bok - + Are you sure you want to delete the selected book? Er du sikker på at du vil slette den merkede boken? - + This book cannot be deleted, it is currently assigned to at least one song. - + No book selected! Ingen bok er valgt! - - SongsPlugin.SongUsageDeleteForm - - - Delete Selected Song Usage Events? - - - - - Are you sure you want to delete selected Song Usage data? - - - - - SongsPlugin.SongUsageDetailForm - - - Output File Location - - - SongsPlugin.SongsTab @@ -3652,7 +3652,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Slett tema - + Error Feil @@ -3672,32 +3672,32 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R 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. @@ -3782,38 +3782,38 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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? diff --git a/resources/i18n/openlp_pt_BR.ts b/resources/i18n/openlp_pt_BR.ts index a09a4f824..95ab77bc1 100644 --- a/resources/i18n/openlp_pt_BR.ts +++ b/resources/i18n/openlp_pt_BR.ts @@ -2271,6 +2271,302 @@ You can download the latest version from <a href="http://openlp.org/&quo + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + Up + + + + + Delete + Deletar + + + + Down + + + + + OpenLP.ServiceManager + + + New Service + Novo Culto + + + + Create a new service + Criar um novo culto + + + + Open Service + Abrir Culto + + + + Load an existing service + Carregar um culto existente + + + + Save Service + Salvar Culto + + + + Save this service + Salvar este culto + + + + Theme: + Tema: + + + + Select a theme for the service + Selecione um tema para o culto + + + + Move to &top + + + + + Move &up + + + + + Move &down + + + + + Move to &bottom + + + + + &Delete From Service + + + + + &Add New Item + + + + + &Add to Selected Item + + + + + &Edit Item + &Editar Item + + + + &Reorder Item + + + + + &Notes + &Notas + + + + &Preview Verse + &Pré-Visualizar Versículo + + + + &Live Verse + &Versículo Ao Vivo + + + + &Change Item Theme + &Alterar Tema do Item + + + + Save Changes to Service? + Salvar Mudanças no Culto? + + + + Your service is unsaved, do you want to save those changes before creating a new one? + + + + + OpenLP Service Files (*.osz) + + + + + Your current service is unsaved, do you want to save the changes before opening a new one? + + + + + Error + Erro + + + + File is not a valid service. +The content encoding is not UTF-8. + + + + + File is not a valid service. + + + + + Missing Display Handler + + + + + Your item cannot be displayed as there is no handler to display it + + + + + Move item to the top of the service. + + + + + Move item up one position in the service. + + + + + Move item down one position in the service. + + + + + Move item to the end of the service. + + + + + Delete the selected item from the service. + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + Item de Notas de Culto + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + OpenLP.SlideController + + + Live + Ao Vivo + + + + Preview + Pré-Visualizar + + + + Move to first + Mover para o primeiro + + + + Move to previous + Mover para o anterior + + + + Move to next + Mover para o próximo + + + + Move to last + Mover para o último + + + + Hide + + + + + Move to live + Mover para ao vivo + + + + Edit and re-preview Song + Editar e pré-visualizar Música novamente + + + + Start continuous loop + Iniciar repetição contínua + + + + Stop continuous loop + Parar repetição contínua + + + + s + s + + + + Delay between slides in seconds + Intervalo entre slides em segundos + + + + Start playing media + Iniciar a reprodução de mídia + + + + Go to Verse + Ir ao Versículo + + PresentationPlugin @@ -2371,302 +2667,6 @@ You can download the latest version from <a href="http://openlp.org/&quo - - ServiceItemEditForm - - - Service Item Maintenance - - - - - Up - - - - - Delete - Deletar - - - - Down - - - - - ServiceManager - - - Save Changes to Service? - Salvar Mudanças no Culto? - - - - Open Service - Abrir Culto - - - - Move to top - Mover para o topo - - - - Create a new service - Criar um novo culto - - - - Save this service - Salvar este culto - - - - Theme: - Tema: - - - - Delete From Service - Deletar do Culto - - - - &Change Item Theme - &Alterar Tema do Item - - - - Save Service - Salvar Culto - - - - &Live Verse - &Versículo Ao Vivo - - - - New Service - Novo Culto - - - - &Notes - &Notas - - - - Move to end - Mover para o fim - - - - Select a theme for the service - Selecione um tema para o culto - - - - Move up order - Mover ordem para cima - - - - Move down order - Mover ordem para baixo - - - - Load an existing service - Carregar um culto existente - - - - &Preview Verse - &Pré-Visualizar Versículo - - - - &Edit Item - &Editar Item - - - - Move to &top - - - - - Move &up - - - - - Move &down - - - - - Move to &bottom - - - - - &Delete From Service - - - - - &Add New Item - - - - - &Add to Selected Item - - - - - &Maintain Item - - - - - Your service is unsaved, do you want to save those changes before creating a new one? - - - - - OpenLP Service Files (*.osz) - - - - - Your current service is unsaved, do you want to save the changes before opening a new one? - - - - - Error - Erro - - - - File is not a valid service. -The content encoding is not UTF-8. - - - - - File is not a valid service. - - - - - Missing Display Handler - - - - - Your item cannot be displayed as there is no handler to display it - - - - - ServiceNoteForm - - - Service Item Notes - Item de Notas de Culto - - - - SettingsForm - - - Configure OpenLP - - - - - SlideController - - - Move to previous - Mover para o anterior - - - - Go to Verse - Ir ao Versículo - - - - Start continuous loop - Iniciar repetição contínua - - - - Live - Ao Vivo - - - - Start playing media - Iniciar a reprodução de mídia - - - - Move to live - Mover para ao vivo - - - - Preview - Pré-Visualizar - - - - Move to last - Mover para o último - - - - Edit and re-preview Song - Editar e pré-visualizar Música novamente - - - - Delay between slides in seconds - Intervalo entre slides em segundos - - - - Move to next - Mover para o próximo - - - - Move to first - Mover para o primeiro - - - - Stop continuous loop - Parar repetição contínua - - - - s - s - - - - Hide - - - SongUsagePlugin @@ -2710,6 +2710,58 @@ The content encoding is not UTF-8. &Uso das Músicas + + SongUsagePlugin.AuditDeleteDialog + + + Delete Song Usage Data + + + + + SongUsagePlugin.AuditDetailDialog + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + para + + + + Report Location + Localização do Relatório + + + + SongUsagePlugin.SongUsageDeleteForm + + + Delete Selected Song Usage Events? + + + + + Are you sure you want to delete selected Song Usage data? + + + + + SongUsagePlugin.SongUsageDetailForm + + + Output File Location + Local do arquivo de saída + + SongsPlugin @@ -2819,37 +2871,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - - SongsPlugin.AuditDeleteDialog - - - Song Usage Delete - - - - - SongsPlugin.AuditDetailDialog - - - Song Usage Extraction - - - - - Select Date Range - - - - - to - para - - - - Report Location - Localização do Relatório - - SongsPlugin.AuthorsForm @@ -2991,37 +3012,37 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Theme Tema - + New &Theme - + Copyright Information Informação de Direitos Autorais - + © - + CCLI Number: Número CCLI: - + Comments Comentários - + Theme, Copyright Info && Comments Tema, Direitos Autorais && Comentários @@ -3041,87 +3062,87 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + No Author Selected - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Add Topic - + This topic does not exist, do you want to add it? - + No Topic Selected - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + Add Book - + This song book does not exist, do you want to add it? - + Error Erro - + You need to type in a song title. - + You need to type in at least one verse. - + Warning - + You have not added any authors for this song. Do you want to add an author now? - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + This author is already in the list. - + This topic is already in the list. @@ -3449,7 +3470,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Error Erro @@ -3484,7 +3505,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Could not save your changes. @@ -3499,87 +3520,66 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Delete Author Deletar Autor - + Are you sure you want to delete the selected author? Você tem certeza que deseja deletar o autor selecionado? - + This author cannot be deleted, they are currently assigned to at least one song. - + No author selected! Nenhum autor selecionado! - + Delete Topic Deletar Tópico - + Are you sure you want to delete the selected topic? Você tem certeza que deseja deletar o tópico selecionado? - + This topic cannot be deleted, it is currently assigned to at least one song. - + No topic selected! Nenhum tópico selecionado! - + Delete Book Deletar Livro - + Are you sure you want to delete the selected book? Você tem certeza que deseja deletar o livro selecionado? - + This book cannot be deleted, it is currently assigned to at least one song. - + No book selected! Nenhum livro selecionado! - - SongsPlugin.SongUsageDeleteForm - - - Delete Selected Song Usage Events? - - - - - Are you sure you want to delete selected Song Usage data? - - - - - SongsPlugin.SongUsageDetailForm - - - Output File Location - Local do arquivo de saída - - SongsPlugin.SongsTab @@ -3652,7 +3652,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Deletar Tema - + Error Erro @@ -3667,22 +3667,22 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R 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 @@ -3772,48 +3772,48 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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? diff --git a/resources/i18n/openlp_sv.ts b/resources/i18n/openlp_sv.ts index 2b11c553d..11d08139f 100644 --- a/resources/i18n/openlp_sv.ts +++ b/resources/i18n/openlp_sv.ts @@ -2271,6 +2271,302 @@ You can download the latest version from <a href="http://openlp.org/&quo + + OpenLP.ServiceItemEditForm + + + Reorder Service Item + + + + + Up + + + + + Delete + Ta bort + + + + Down + + + + + OpenLP.ServiceManager + + + New Service + Ny mötesplanering + + + + Create a new service + Skapa en ny mötesplanering + + + + Open Service + Öppna Mötesplanering + + + + Load an existing service + Ladda en planering + + + + Save Service + Spara Mötesplanering + + + + Save this service + Spara denna mötesplanering + + + + Theme: + Tema: + + + + Select a theme for the service + Välj ett tema för planeringen + + + + Move to &top + Flytta till &toppen + + + + Move &up + Flytta &upp + + + + Move &down + Flytta &ner + + + + Move to &bottom + Flytta längst &ner + + + + &Delete From Service + &Ta bort från mötesplanering + + + + &Add New Item + + + + + &Add to Selected Item + + + + + &Edit Item + &Redigera objekt + + + + &Reorder Item + + + + + &Notes + &Anteckningar + + + + &Preview Verse + &Förhandsgranska Vers + + + + &Live Verse + &Live-vers + + + + &Change Item Theme + &Byt objektets tema + + + + Save Changes to Service? + Spara Ändringar till Planering? + + + + Your service is unsaved, do you want to save those changes before creating a new one? + + + + + OpenLP Service Files (*.osz) + + + + + Your current service is unsaved, do you want to save the changes before opening a new one? + + + + + Error + Fel + + + + File is not a valid service. +The content encoding is not UTF-8. + + + + + File is not a valid service. + + + + + Missing Display Handler + + + + + Your item cannot be displayed as there is no handler to display it + + + + + Move item to the top of the service. + + + + + Move item up one position in the service. + + + + + Move item down one position in the service. + + + + + Move item to the end of the service. + + + + + Delete the selected item from the service. + + + + + OpenLP.ServiceNoteForm + + + Service Item Notes + Mötesanteckningar + + + + OpenLP.SettingsForm + + + Configure OpenLP + + + + + OpenLP.SlideController + + + Live + Live + + + + Preview + Förhandsgranska + + + + Move to first + Flytta till första + + + + Move to previous + Flytta till föregående + + + + Move to next + Flytta till nästa + + + + Move to last + Flytta till sist + + + + Hide + + + + + Move to live + Flytta till live + + + + Edit and re-preview Song + Ändra och åter-förhandsgranska sång + + + + Start continuous loop + Börja oändlig loop + + + + Stop continuous loop + Stoppa upprepad loop + + + + s + s + + + + Delay between slides in seconds + Fördröjning mellan bilder, i sekunder + + + + Start playing media + Börja spela media + + + + Go to Verse + Hoppa till vers + + PresentationPlugin @@ -2371,302 +2667,6 @@ You can download the latest version from <a href="http://openlp.org/&quo - - ServiceItemEditForm - - - Service Item Maintenance - - - - - Up - - - - - Delete - Ta bort - - - - Down - - - - - ServiceManager - - - Save Changes to Service? - Spara Ändringar till Planering? - - - - Open Service - Öppna Mötesplanering - - - - Move to top - Flytta längst upp - - - - Create a new service - Skapa en ny mötesplanering - - - - Save this service - Spara denna mötesplanering - - - - Theme: - Tema: - - - - Delete From Service - Ta bort från mötesplanering - - - - &Change Item Theme - &Byt objektets tema - - - - Save Service - Spara Mötesplanering - - - - &Live Verse - &Live-vers - - - - Move to &top - Flytta till &toppen - - - - New Service - Ny mötesplanering - - - - &Notes - &Anteckningar - - - - Move to end - Flytta till slutet - - - - &Delete From Service - &Ta bort från mötesplanering - - - - Select a theme for the service - Välj ett tema för planeringen - - - - Move up order - Flytta upp order - - - - Move down order - Flytta ner order - - - - Move &down - Flytta &ner - - - - Load an existing service - Ladda en planering - - - - &Preview Verse - &Förhandsgranska Vers - - - - Move &up - Flytta &upp - - - - &Edit Item - &Redigera objekt - - - - Move to &bottom - Flytta längst &ner - - - - &Add New Item - - - - - &Add to Selected Item - - - - - &Maintain Item - - - - - Your service is unsaved, do you want to save those changes before creating a new one? - - - - - OpenLP Service Files (*.osz) - - - - - Your current service is unsaved, do you want to save the changes before opening a new one? - - - - - Error - Fel - - - - File is not a valid service. -The content encoding is not UTF-8. - - - - - File is not a valid service. - - - - - Missing Display Handler - - - - - Your item cannot be displayed as there is no handler to display it - - - - - ServiceNoteForm - - - Service Item Notes - Mötesanteckningar - - - - SettingsForm - - - Configure OpenLP - - - - - SlideController - - - Move to previous - Flytta till föregående - - - - Go to Verse - Hoppa till vers - - - - Start continuous loop - Börja oändlig loop - - - - Live - Live - - - - Start playing media - Börja spela media - - - - Move to live - Flytta till live - - - - Preview - Förhandsgranska - - - - Move to last - Flytta till sist - - - - Edit and re-preview Song - Ändra och åter-förhandsgranska sång - - - - Delay between slides in seconds - Fördröjning mellan bilder, i sekunder - - - - Move to next - Flytta till nästa - - - - Move to first - Flytta till första - - - - Stop continuous loop - Stoppa upprepad loop - - - - s - s - - - - Hide - - - SongUsagePlugin @@ -2710,6 +2710,58 @@ The content encoding is not UTF-8. &Sånganvändning + + SongUsagePlugin.AuditDeleteDialog + + + Delete Song Usage Data + + + + + SongUsagePlugin.AuditDetailDialog + + + Song Usage Extraction + Sånganvändningsutdrag + + + + Select Date Range + Välj datumspann + + + + to + till + + + + Report Location + Rapportera placering + + + + SongUsagePlugin.SongUsageDeleteForm + + + Delete Selected Song Usage Events? + Ta bort valda sånganvändningsdata? + + + + Are you sure you want to delete selected Song Usage data? + Vill du verkligen ta bort vald sånganvändningsdata? + + + + SongUsagePlugin.SongUsageDetailForm + + + Output File Location + Utfil sökväg + + SongsPlugin @@ -2819,37 +2871,6 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - - SongsPlugin.AuditDeleteDialog - - - Song Usage Delete - Ta bort inspelad sånganvändning - - - - SongsPlugin.AuditDetailDialog - - - Song Usage Extraction - Sånganvändningsutdrag - - - - Select Date Range - Välj datumspann - - - - to - till - - - - Report Location - Rapportera placering - - SongsPlugin.AuthorsForm @@ -2991,37 +3012,37 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Theme Tema - + New &Theme - + Copyright Information Copyright-information - + © - + CCLI Number: CCLI-nummer: - + Comments Kommentarer - + Theme, Copyright Info && Comments Tema, copyright-info && kommentarer @@ -3041,87 +3062,87 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + No Author Selected - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Add Topic - + This topic does not exist, do you want to add it? - + No Topic Selected - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + Add Book - + This song book does not exist, do you want to add it? - + Error Fel - + You need to type in a song title. - + You need to type in at least one verse. - + Warning - + You have not added any authors for this song. Do you want to add an author now? - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + You have not used %s anywhere in the verse order. Are you sure you want to save the song like this? - + This author is already in the list. - + This topic is already in the list. @@ -3449,7 +3470,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Error Fel @@ -3484,7 +3505,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Could not save your changes. @@ -3499,87 +3520,66 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + Delete Author Ta bort låtskrivare - + Are you sure you want to delete the selected author? Är du säker på att du vill ta bort den valda låtskrivaren? - + This author cannot be deleted, they are currently assigned to at least one song. - + No author selected! Ingen författare vald! - + Delete Topic Ta bort ämne - + Are you sure you want to delete the selected topic? Är du säker på att du vill ta bort valt ämne? - + This topic cannot be deleted, it is currently assigned to at least one song. - + No topic selected! Inget ämne valt! - + Delete Book Ta bort bok - + Are you sure you want to delete the selected book? Är du säker på att du vill ta bort vald bok? - + This book cannot be deleted, it is currently assigned to at least one song. - + No book selected! Ingen bok vald! - - SongsPlugin.SongUsageDeleteForm - - - Delete Selected Song Usage Events? - Ta bort valda sånganvändningsdata? - - - - Are you sure you want to delete selected Song Usage data? - Vill du verkligen ta bort vald sånganvändningsdata? - - - - SongsPlugin.SongUsageDetailForm - - - Output File Location - Utfil sökväg - - SongsPlugin.SongsTab @@ -3652,12 +3652,12 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Ta bort tema - + Error Fel - + File is not a valid theme. Filen är inte ett giltigt tema. @@ -3677,27 +3677,27 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R 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. @@ -3782,38 +3782,38 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + 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?