diff --git a/openlp/core/lib/settingsmanager.py b/openlp/core/lib/settingsmanager.py index 74a5d4866..a8c8e7c50 100644 --- a/openlp/core/lib/settingsmanager.py +++ b/openlp/core/lib/settingsmanager.py @@ -57,15 +57,33 @@ class SettingsManager(object): self.mainwindow_left + self.mainwindow_right) - 100 ) / 2 self.slidecontroller_image = self.slidecontroller - 50 - self.showPreviewPanel = QtCore.QSettings().value( - u'user interface/preview panel', QtCore.QVariant(True)).toBool() - - def togglePreviewPanel(self, isVisible): + def get_preview_visibility(self): """ - Toggle the preview panel visibility. + Return the preview panel's visibility. + """ + return QtCore.QSettings().value(u'user interface/preview panel', + QtCore.QVariant(True)).toBool() + + def set_preview_visibility(self, visible): + """ + Set the preview panel's visibility. """ QtCore.QSettings().setValue(u'user interface/preview panel', - QtCore.QVariant(isVisible)) + QtCore.QVariant(visible)) + + def get_live_visibility(self): + """ + Return the live panel's visibility. + """ + return QtCore.QSettings().value(u'user interface/live panel', + QtCore.QVariant(True)).toBool() + + def set_live_visibility(self, visible): + """ + Set the live panel's visibility. + """ + QtCore.QSettings().setValue(u'user interface/live panel', + QtCore.QVariant(visible)) @staticmethod def get_last_dir(section, num=None): diff --git a/openlp/core/lib/toolbar.py b/openlp/core/lib/toolbar.py index a2979746e..6b87f84fe 100644 --- a/openlp/core/lib/toolbar.py +++ b/openlp/core/lib/toolbar.py @@ -42,7 +42,7 @@ class OpenLPToolbar(QtGui.QToolBar): """ Initialise the toolbar. """ - QtGui.QToolBar.__init__(self, None) + QtGui.QToolBar.__init__(self, parent) # useful to be able to reuse button icons... self.icons = {} self.setIconSize(QtCore.QSize(20, 20)) diff --git a/openlp/core/ui/amendthemedialog.py b/openlp/core/ui/amendthemedialog.py index 2bb202964..960daba97 100644 --- a/openlp/core/ui/amendthemedialog.py +++ b/openlp/core/ui/amendthemedialog.py @@ -596,15 +596,15 @@ class Ui_AmendThemeDialog(object): self.TransitionGroupBox.setObjectName(u'TransitionGroupBox') self.gridLayout_5 = QtGui.QGridLayout(self.TransitionGroupBox) self.gridLayout_5.setObjectName(u'gridLayout_5') - self.SlideTransitionCheckedBoxLabel = QtGui.QLabel( + self.SlideTransitionCheckBoxLabel = QtGui.QLabel( self.TransitionGroupBox) - self.SlideTransitionCheckedBoxLabel.setObjectName( - u'SlideTransitionCheckedBoxLabel') + self.SlideTransitionCheckBoxLabel.setObjectName( + u'SlideTransitionCheckBoxLabel') self.gridLayout_5.addWidget( - self.SlideTransitionCheckedBoxLabel, 0, 0, 1, 1) - self.SlideTransitionCheckedBox = QtGui.QCheckBox(self.AlignmentGroupBox) - self.SlideTransitionCheckedBox.setTristate(False) - self.gridLayout_5.addWidget(self.SlideTransitionCheckedBox, 0, 1, 1, 1) + self.SlideTransitionCheckBoxLabel, 0, 0, 1, 1) + self.SlideTransitionCheckBox = QtGui.QCheckBox(self.AlignmentGroupBox) + self.SlideTransitionCheckBox.setTristate(False) + self.gridLayout_5.addWidget(self.SlideTransitionCheckBox, 0, 1, 1, 1) self.OptionsRightLayout.addWidget(self.TransitionGroupBox) spacerItem6 = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding) @@ -723,7 +723,7 @@ class Ui_AmendThemeDialog(object): AmendThemeDialog.setWindowTitle( translate('AmendThemeForm', 'Theme Maintenance')) self.ThemeNameLabel.setText( - translate('AmendThemeForm', 'Theme &Name:')) + translate('AmendThemeForm', 'Theme &name:')) self.BackgroundLabel.setText( translate('AmendThemeForm', '&Visibility:')) self.BackgroundComboBox.setItemText(0, @@ -775,7 +775,7 @@ class Ui_AmendThemeDialog(object): self.MainLocationGroupBox.setTitle( translate('AmendThemeForm', 'Display Location')) self.DefaultLocationLabel.setText( - translate('AmendThemeForm', 'Use default location:')) + translate('AmendThemeForm', 'Use default location')) self.FontMainXLabel.setText( translate('AmendThemeForm', 'X position:')) self.FontMainYLabel.setText( @@ -811,7 +811,7 @@ class Ui_AmendThemeDialog(object): self.LocationFooterGroupBox.setTitle( translate('AmendThemeForm', 'Display Location')) self.FontFooterDefaultLabel.setText( - translate('AmendThemeForm', 'Use default location:')) + translate('AmendThemeForm', 'Use default location')) self.FontFooterXLabel.setText( translate('AmendThemeForm', 'X position:')) self.FontFooterYLabel.setText( @@ -864,9 +864,10 @@ class Ui_AmendThemeDialog(object): translate('AmendThemeForm', 'Bottom')) self.TransitionGroupBox.setTitle( translate('AmendThemeForm', 'Slide Transition')) - self.SlideTransitionCheckedBoxLabel.setText( - translate('AmendThemeForm', 'Transition active:')) + self.SlideTransitionCheckBoxLabel.setText( + translate('AmendThemeForm', 'Transition active')) self.ThemeTabWidget.setTabText( self.ThemeTabWidget.indexOf(self.OtherOptionsTab), translate('AmendThemeForm', '&Other Options')) self.PreviewGroupBox.setTitle(translate('AmendThemeForm', 'Preview')) + diff --git a/openlp/core/ui/amendthemeform.py b/openlp/core/ui/amendthemeform.py index c85eff4b8..1c2658dc3 100644 --- a/openlp/core/ui/amendthemeform.py +++ b/openlp/core/ui/amendthemeform.py @@ -133,9 +133,9 @@ class AmendThemeForm(QtGui.QDialog, Ui_AmendThemeDialog): QtCore.QObject.connect(self.OutlineSpinBox, QtCore.SIGNAL(u'editingFinished()'), self.onOutlineSpinBoxChanged) - QtCore.QObject.connect(self.SlideTransitionCheckedBox, + QtCore.QObject.connect(self.SlideTransitionCheckBox, QtCore.SIGNAL(u'stateChanged(int)'), - self.onSlideTransitionCheckedBoxChanged) + self.onSlideTransitionCheckBoxChanged) def accept(self): new_theme = ThemeXML() @@ -500,7 +500,7 @@ class AmendThemeForm(QtGui.QDialog, Ui_AmendThemeDialog): self.stateChanging(self.theme) self.previewTheme() - def onSlideTransitionCheckedBoxChanged(self, value): + def onSlideTransitionCheckBoxChanged(self, value): if value == 2: # checked self.theme.display_slideTransition = True else: @@ -624,9 +624,9 @@ class AmendThemeForm(QtGui.QDialog, Ui_AmendThemeDialog): self.ShadowColorPushButton.setEnabled(False) self.ShadowSpinBox.setValue(int(self.theme.display_shadow_size)) if self.theme.display_slideTransition: - self.SlideTransitionCheckedBox.setCheckState(QtCore.Qt.Checked) + self.SlideTransitionCheckBox.setCheckState(QtCore.Qt.Checked) else: - self.SlideTransitionCheckedBox.setCheckState(QtCore.Qt.Unchecked) + self.SlideTransitionCheckBox.setCheckState(QtCore.Qt.Unchecked) self.HorizontalComboBox.setCurrentIndex( self.theme.display_horizontalAlign) self.VerticalComboBox.setCurrentIndex(self.theme.display_verticalAlign) diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index b770a9e05..530cd6124 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -210,7 +210,6 @@ class MainDisplay(DisplayWidget): self.setWindowFlags(QtCore.Qt.Window | QtCore.Qt.FramelessWindowHint) self.setHorizontalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff) self.setVerticalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff) - self.parent = parent # WA_TranslucentBackground is not available in QT4.4 try: self.setAttribute(QtCore.Qt.WA_TranslucentBackground) @@ -616,7 +615,7 @@ class VideoDisplay(Phonon.VideoWidget): def mediaShow(self, message=''): """ - Show the video disaply if it was already hidden + Show the video display if it was already hidden """ if self.hidden: self.hidden = False @@ -625,7 +624,7 @@ class VideoDisplay(Phonon.VideoWidget): class AudioPlayer(QtCore.QObject): """ - This Class will play audio only allowing components to work witn a + This Class will play audio only allowing components to work with a soundtrack which does not take over the user interface. """ log.info(u'AudioPlayer Loaded') @@ -641,8 +640,7 @@ class AudioPlayer(QtCore.QObject): The list of screens. """ log.debug(u'AudioPlayer Initialisation started') - QtCore.QObject.__init__(self) - self.parent = parent + QtCore.QObject.__init__(self, parent) self.message = None self.mediaObject = Phonon.MediaObject() self.audioObject = Phonon.AudioOutput(Phonon.VideoCategory) diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index 3f392655d..9c5939070 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -147,16 +147,20 @@ class Ui_MainWindow(object): self.FileImportMenu.setObjectName(u'FileImportMenu') self.FileExportMenu = QtGui.QMenu(self.FileMenu) self.FileExportMenu.setObjectName(u'FileExportMenu') - self.OptionsMenu = QtGui.QMenu(self.MenuBar) - self.OptionsMenu.setObjectName(u'OptionsMenu') - self.OptionsViewMenu = QtGui.QMenu(self.OptionsMenu) - self.OptionsViewMenu.setObjectName(u'OptionsViewMenu') - self.ViewModeMenu = QtGui.QMenu(self.OptionsViewMenu) + # View Menu + self.ViewMenu = QtGui.QMenu(self.MenuBar) + self.ViewMenu.setObjectName(u'ViewMenu') + self.ViewModeMenu = QtGui.QMenu(self.ViewMenu) self.ViewModeMenu.setObjectName(u'ViewModeMenu') - self.OptionsLanguageMenu = QtGui.QMenu(self.OptionsMenu) - self.OptionsLanguageMenu.setObjectName(u'OptionsLanguageMenu') + # Tools Menu self.ToolsMenu = QtGui.QMenu(self.MenuBar) self.ToolsMenu.setObjectName(u'ToolsMenu') + # Settings Menu + self.SettingsMenu = QtGui.QMenu(self.MenuBar) + self.SettingsMenu.setObjectName(u'SettingsMenu') + self.SettingsLanguageMenu = QtGui.QMenu(self.SettingsMenu) + self.SettingsLanguageMenu.setObjectName(u'SettingsLanguageMenu') + # Help Menu self.HelpMenu = QtGui.QMenu(self.MenuBar) self.HelpMenu.setObjectName(u'HelpMenu') MainWindow.setMenuBar(self.MenuBar) @@ -168,8 +172,8 @@ class Ui_MainWindow(object): self.StatusBar.addPermanentWidget(self.DefaultThemeLabel) # Create the MediaManager self.MediaManagerDock = OpenLPDockWidget(MainWindow) - MediaManagerIcon = build_icon(u':/system/system_mediamanager.png') - self.MediaManagerDock.setWindowIcon(MediaManagerIcon) + self.MediaManagerDock.setWindowIcon( + build_icon(u':/system/system_mediamanager.png')) self.MediaManagerDock.setStyleSheet(media_manager_style) self.MediaManagerDock.setMinimumWidth( self.settingsmanager.mainwindow_left) @@ -188,8 +192,8 @@ class Ui_MainWindow(object): QtCore.Qt.DockWidgetArea(1), self.MediaManagerDock) # Create the service manager self.ServiceManagerDock = OpenLPDockWidget(MainWindow) - ServiceManagerIcon = build_icon(u':/system/system_servicemanager.png') - self.ServiceManagerDock.setWindowIcon(ServiceManagerIcon) + self.ServiceManagerDock.setWindowIcon( + build_icon(u':/system/system_servicemanager.png')) self.ServiceManagerDock.setObjectName(u'ServiceManagerDock') self.ServiceManagerDock.setMinimumWidth( self.settingsmanager.mainwindow_right) @@ -199,8 +203,8 @@ class Ui_MainWindow(object): QtCore.Qt.DockWidgetArea(2), self.ServiceManagerDock) # Create the theme manager self.ThemeManagerDock = OpenLPDockWidget(MainWindow) - ThemeManagerIcon = build_icon(u':/system/system_thememanager.png') - self.ThemeManagerDock.setWindowIcon(ThemeManagerIcon) + self.ThemeManagerDock.setWindowIcon( + build_icon(u':/system/system_thememanager.png')) self.ThemeManagerDock.setObjectName(u'ThemeManagerDock') self.ThemeManagerDock.setMinimumWidth( self.settingsmanager.mainwindow_right) @@ -227,8 +231,7 @@ class Ui_MainWindow(object): self.FileSaveAsItem = QtGui.QAction(MainWindow) self.FileSaveAsItem.setObjectName(u'FileSaveAsItem') self.FileExitItem = QtGui.QAction(MainWindow) - ExitIcon = build_icon(u':/system/system_exit.png') - self.FileExitItem.setIcon(ExitIcon) + self.FileExitItem.setIcon(build_icon(u':/system/system_exit.png')) self.FileExitItem.setObjectName(u'FileExitItem') self.ImportThemeItem = QtGui.QAction(MainWindow) self.ImportThemeItem.setObjectName(u'ImportThemeItem') @@ -238,39 +241,41 @@ class Ui_MainWindow(object): self.ExportThemeItem.setObjectName(u'ExportThemeItem') self.ExportLanguageItem = QtGui.QAction(MainWindow) self.ExportLanguageItem.setObjectName(u'ExportLanguageItem') - self.actionLook_Feel = QtGui.QAction(MainWindow) - self.actionLook_Feel.setObjectName(u'actionLook_Feel') - self.OptionsSettingsItem = QtGui.QAction(MainWindow) - SettingsIcon = build_icon(u':/system/system_settings.png') - self.OptionsSettingsItem.setIcon(SettingsIcon) - self.OptionsSettingsItem.setObjectName(u'OptionsSettingsItem') + self.SettingsConfigureItem = QtGui.QAction(MainWindow) + self.SettingsConfigureItem.setIcon( + build_icon(u':/system/system_settings.png')) + self.SettingsConfigureItem.setObjectName(u'SettingsConfigureItem') self.ViewMediaManagerItem = QtGui.QAction(MainWindow) self.ViewMediaManagerItem.setCheckable(True) self.ViewMediaManagerItem.setChecked(self.MediaManagerDock.isVisible()) - self.ViewMediaManagerItem.setIcon(MediaManagerIcon) + self.ViewMediaManagerItem.setIcon( + build_icon(u':/system/system_mediamanager.png')) self.ViewMediaManagerItem.setObjectName(u'ViewMediaManagerItem') self.ViewThemeManagerItem = QtGui.QAction(MainWindow) self.ViewThemeManagerItem.setCheckable(True) self.ViewThemeManagerItem.setChecked(self.ThemeManagerDock.isVisible()) - self.ViewThemeManagerItem.setIcon(ThemeManagerIcon) + self.ViewThemeManagerItem.setIcon( + build_icon(u':/system/system_thememanager.png')) self.ViewThemeManagerItem.setObjectName(u'ViewThemeManagerItem') self.ViewServiceManagerItem = QtGui.QAction(MainWindow) self.ViewServiceManagerItem.setCheckable(True) self.ViewServiceManagerItem.setChecked( self.ServiceManagerDock.isVisible()) - self.ViewServiceManagerItem.setIcon(ServiceManagerIcon) + self.ViewServiceManagerItem.setIcon( + build_icon(u':/system/system_servicemanager.png')) self.ViewServiceManagerItem.setObjectName(u'ViewServiceManagerItem') - self.PluginItem = QtGui.QAction(MainWindow) - #self.PluginItem.setIcon(AlertIcon) - self.PluginItem.setObjectName(u'PluginItem') + self.SettingsPluginListItem = QtGui.QAction(MainWindow) + self.SettingsPluginListItem.setIcon( + build_icon(u':/system/settings_plugin_list.png')) + self.SettingsPluginListItem.setObjectName(u'SettingsPluginListItem') self.HelpDocumentationItem = QtGui.QAction(MainWindow) - ContentsIcon = build_icon(u':/system/system_help_contents.png') - self.HelpDocumentationItem.setIcon(ContentsIcon) + self.HelpDocumentationItem.setIcon( + build_icon(u':/system/system_help_contents.png')) self.HelpDocumentationItem.setObjectName(u'HelpDocumentationItem') self.HelpDocumentationItem.setEnabled(False) self.HelpAboutItem = QtGui.QAction(MainWindow) - AboutIcon = build_icon(u':/system/system_about.png') - self.HelpAboutItem.setIcon(AboutIcon) + self.HelpAboutItem.setIcon( + build_icon(u':/system/system_about.png')) self.HelpAboutItem.setObjectName(u'HelpAboutItem') self.HelpOnlineHelpItem = QtGui.QAction(MainWindow) self.HelpOnlineHelpItem.setObjectName(u'HelpOnlineHelpItem') @@ -294,18 +299,36 @@ class Ui_MainWindow(object): add_actions(self.LanguageGroup, [languageItem]) self.LanguageGroup.setDisabled(LanguageManager.AutoLanguage) self.ToolsAddToolItem = QtGui.QAction(MainWindow) - AddToolIcon = build_icon(u':/tools/tools_add.png') - self.ToolsAddToolItem.setIcon(AddToolIcon) + self.ToolsAddToolItem.setIcon(build_icon(u':/tools/tools_add.png')) self.ToolsAddToolItem.setObjectName(u'ToolsAddToolItem') - self.action_Preview_Panel = QtGui.QAction(MainWindow) - self.action_Preview_Panel.setCheckable(True) - self.action_Preview_Panel.setChecked( - self.settingsmanager.showPreviewPanel) - self.action_Preview_Panel.setObjectName(u'action_Preview_Panel') + self.ViewPreviewPanel = QtGui.QAction(MainWindow) + self.ViewPreviewPanel.setCheckable(True) + self.ViewPreviewPanel.setChecked( + self.settingsmanager.get_preview_visibility()) + self.ViewPreviewPanel.setObjectName(u'ViewPreviewPanel') self.PreviewController.Panel.setVisible( - self.settingsmanager.showPreviewPanel) + self.settingsmanager.get_preview_visibility()) + self.ViewLivePanel = QtGui.QAction(MainWindow) + self.ViewLivePanel.setCheckable(True) + self.ViewLivePanel.setChecked( + self.settingsmanager.get_live_visibility()) + self.ViewLivePanel.setObjectName(u'ViewLivePanel') + self.LiveController.Panel.setVisible( + self.settingsmanager.get_live_visibility()) + self.ModeDefaultItem = QtGui.QAction(MainWindow) + self.ModeDefaultItem.setCheckable(True) + self.ModeDefaultItem.setObjectName(u'ModeDefaultItem') + self.ModeSetupItem = QtGui.QAction(MainWindow) + self.ModeSetupItem.setCheckable(True) + self.ModeSetupItem.setObjectName(u'ModeLiveItem') self.ModeLiveItem = QtGui.QAction(MainWindow) + self.ModeLiveItem.setCheckable(True) self.ModeLiveItem.setObjectName(u'ModeLiveItem') + self.ModeGroup = QtGui.QActionGroup(MainWindow) + self.ModeGroup.addAction(self.ModeDefaultItem) + self.ModeGroup.addAction(self.ModeSetupItem) + self.ModeGroup.addAction(self.ModeLiveItem) + self.ModeDefaultItem.setChecked(True) add_actions(self.FileImportMenu, (self.ImportThemeItem, self.ImportLanguageItem)) add_actions(self.FileExportMenu, @@ -314,23 +337,27 @@ class Ui_MainWindow(object): self.FileSaveItem, self.FileSaveAsItem, None, self.FileImportMenu.menuAction(), self.FileExportMenu.menuAction(), self.FileExitItem) - add_actions(self.ViewModeMenu, [self.ModeLiveItem]) - add_actions(self.OptionsViewMenu, (self.ViewModeMenu.menuAction(), + add_actions(self.ViewModeMenu, (self.ModeDefaultItem, + self.ModeSetupItem, self.ModeLiveItem)) + add_actions(self.ViewMenu, (self.ViewModeMenu.menuAction(), None, self.ViewMediaManagerItem, self.ViewServiceManagerItem, - self.ViewThemeManagerItem, None, self.action_Preview_Panel)) + self.ViewThemeManagerItem, None, self.ViewPreviewPanel, + self.ViewLivePanel)) #i18n add Language Actions - add_actions(self.OptionsLanguageMenu, (self.AutoLanguageItem, None)) - add_actions(self.OptionsLanguageMenu, self.LanguageGroup.actions()) - add_actions(self.OptionsMenu, (self.OptionsLanguageMenu.menuAction(), - self.OptionsViewMenu.menuAction(), None, self.OptionsSettingsItem)) + add_actions(self.SettingsLanguageMenu, (self.AutoLanguageItem, None)) + add_actions(self.SettingsLanguageMenu, self.LanguageGroup.actions()) + add_actions(self.SettingsMenu, (self.SettingsPluginListItem, + self.SettingsLanguageMenu.menuAction(), None, + self.SettingsConfigureItem)) add_actions(self.ToolsMenu, - (self.PluginItem, None, self.ToolsAddToolItem)) + (self.ToolsAddToolItem, None)) add_actions(self.HelpMenu, (self.HelpDocumentationItem, self.HelpOnlineHelpItem, None, self.HelpWebSiteItem, self.HelpAboutItem)) add_actions(self.MenuBar, - (self.FileMenu.menuAction(), self.OptionsMenu.menuAction(), - self.ToolsMenu.menuAction(), self.HelpMenu.menuAction())) + (self.FileMenu.menuAction(), self.ViewMenu.menuAction(), + self.ToolsMenu.menuAction(), self.SettingsMenu.menuAction(), + self.HelpMenu.menuAction())) # Initialise the translation self.retranslateUi(MainWindow) self.MediaToolBox.setCurrentIndex(0) @@ -360,12 +387,12 @@ class Ui_MainWindow(object): self.FileMenu.setTitle(translate('MainWindow', '&File')) self.FileImportMenu.setTitle(translate('MainWindow', '&Import')) self.FileExportMenu.setTitle(translate('MainWindow', '&Export')) - self.OptionsMenu.setTitle(translate('MainWindow', '&Options')) - self.OptionsViewMenu.setTitle(translate('MainWindow', '&View')) + self.ViewMenu.setTitle(translate('MainWindow', '&View')) self.ViewModeMenu.setTitle(translate('MainWindow', 'M&ode')) - self.OptionsLanguageMenu.setTitle(translate('MainWindow', - '&Language')) self.ToolsMenu.setTitle(translate('MainWindow', '&Tools')) + self.SettingsMenu.setTitle(translate('MainWindow', '&Settings')) + self.SettingsLanguageMenu.setTitle(translate('MainWindow', + '&Language')) self.HelpMenu.setTitle(translate('MainWindow', '&Help')) self.MediaManagerDock.setWindowTitle( translate('MainWindow', 'Media Manager')) @@ -376,24 +403,24 @@ class Ui_MainWindow(object): self.FileNewItem.setText(translate('MainWindow', '&New')) self.FileNewItem.setToolTip(translate('MainWindow', 'New Service')) self.FileNewItem.setStatusTip( - translate('MainWindow', 'Create a new Service')) + translate('MainWindow', 'Create a new service.')) self.FileNewItem.setShortcut(translate('MainWindow', 'Ctrl+N')) self.FileOpenItem.setText(translate('MainWindow', '&Open')) self.FileOpenItem.setToolTip(translate('MainWindow', 'Open Service')) self.FileOpenItem.setStatusTip( - translate('MainWindow', 'Open an existing service')) + translate('MainWindow', 'Open an existing service.')) self.FileOpenItem.setShortcut(translate('MainWindow', 'Ctrl+O')) self.FileSaveItem.setText(translate('MainWindow', '&Save')) self.FileSaveItem.setToolTip(translate('MainWindow', 'Save Service')) self.FileSaveItem.setStatusTip( - translate('MainWindow', 'Save the current service to disk')) + translate('MainWindow', 'Save the current service to disk.')) self.FileSaveItem.setShortcut(translate('MainWindow', 'Ctrl+S')) self.FileSaveAsItem.setText(translate('MainWindow', 'Save &As...')) self.FileSaveAsItem.setToolTip( translate('MainWindow', 'Save Service As')) self.FileSaveAsItem.setStatusTip(translate('MainWindow', - 'Save the current service under a new name')) - self.FileSaveAsItem.setShortcut(translate('MainWindow', 'F12')) + 'Save the current service under a new name.')) + self.FileSaveAsItem.setShortcut(translate('MainWindow', 'Ctrl+Shift+S')) self.FileExitItem.setText(translate('MainWindow', 'E&xit')) self.FileExitItem.setStatusTip(translate('MainWindow', 'Quit OpenLP')) self.FileExitItem.setShortcut(translate('MainWindow', 'Alt+F4')) @@ -401,40 +428,48 @@ class Ui_MainWindow(object): self.ImportLanguageItem.setText(translate('MainWindow', '&Language')) self.ExportThemeItem.setText(translate('MainWindow', '&Theme')) self.ExportLanguageItem.setText(translate('MainWindow', '&Language')) - self.actionLook_Feel.setText(translate('MainWindow', 'Look && &Feel')) - self.OptionsSettingsItem.setText(translate('MainWindow', '&Settings')) + self.SettingsConfigureItem.setText(translate('MainWindow', + '&Configure OpenLP...')) self.ViewMediaManagerItem.setText( translate('MainWindow', '&Media Manager')) self.ViewMediaManagerItem.setToolTip( translate('MainWindow', 'Toggle Media Manager')) self.ViewMediaManagerItem.setStatusTip(translate('MainWindow', - 'Toggle the visibility of the Media Manager')) + 'Toggle the visibility of the media manager.')) self.ViewMediaManagerItem.setShortcut(translate('MainWindow', 'F8')) self.ViewThemeManagerItem.setText( translate('MainWindow', '&Theme Manager')) self.ViewThemeManagerItem.setToolTip( translate('MainWindow', 'Toggle Theme Manager')) self.ViewThemeManagerItem.setStatusTip(translate('MainWindow', - 'Toggle the visibility of the Theme Manager')) + 'Toggle the visibility of the theme manager.')) self.ViewThemeManagerItem.setShortcut(translate('MainWindow', 'F10')) self.ViewServiceManagerItem.setText( translate('MainWindow', '&Service Manager')) self.ViewServiceManagerItem.setToolTip( translate('MainWindow', 'Toggle Service Manager')) self.ViewServiceManagerItem.setStatusTip(translate('MainWindow', - 'Toggle the visibility of the Service Manager')) + 'Toggle the visibility of the service manager.')) self.ViewServiceManagerItem.setShortcut(translate('MainWindow', 'F9')) - self.action_Preview_Panel.setText( + self.ViewPreviewPanel.setText( translate('MainWindow', '&Preview Panel')) - self.action_Preview_Panel.setToolTip( + self.ViewPreviewPanel.setToolTip( translate('MainWindow', 'Toggle Preview Panel')) - self.action_Preview_Panel.setStatusTip(translate('MainWindow', - 'Toggle the visibility of the Preview Panel')) - self.action_Preview_Panel.setShortcut(translate('MainWindow', 'F11')) - self.PluginItem.setText(translate('MainWindow', '&Plugin List')) - self.PluginItem.setStatusTip( + self.ViewPreviewPanel.setStatusTip(translate('MainWindow', + 'Toggle the visibility of the preview panel.')) + self.ViewPreviewPanel.setShortcut(translate('MainWindow', 'F11')) + self.ViewLivePanel.setText( + translate('MainWindow', '&Live Panel')) + self.ViewLivePanel.setToolTip( + translate('MainWindow', 'Toggle Live Panel')) + self.ViewLivePanel.setStatusTip(translate('MainWindow', + 'Toggle the visibility of the live panel.')) + self.ViewLivePanel.setShortcut(translate('MainWindow', 'F12')) + self.SettingsPluginListItem.setText(translate('MainWindow', + '&Plugin List')) + self.SettingsPluginListItem.setStatusTip( translate('MainWindow', 'List the Plugins')) - self.PluginItem.setShortcut(translate('MainWindow', 'Alt+F7')) + self.SettingsPluginListItem.setShortcut(translate('MainWindow', 'Alt+F7')) self.HelpDocumentationItem.setText( translate('MainWindow', '&User Guide')) self.HelpAboutItem.setText(translate('MainWindow', '&About')) @@ -444,10 +479,9 @@ class Ui_MainWindow(object): self.HelpOnlineHelpItem.setText( translate('MainWindow', '&Online Help')) self.HelpWebSiteItem.setText(translate('MainWindow', '&Web Site')) - #i18n self.AutoLanguageItem.setText(translate('MainWindow', '&Auto Detect')) self.AutoLanguageItem.setStatusTip( - translate('MainWindow', 'Choose System language, if available')) + translate('MainWindow', 'Use the system language, if available.')) for item in self.LanguageGroup.actions(): item.setText(item.objectName()) item.setStatusTip(unicode(translate('MainWindow', @@ -455,10 +489,19 @@ class Ui_MainWindow(object): self.ToolsAddToolItem.setText(translate('MainWindow', 'Add &Tool...')) self.ToolsAddToolItem.setStatusTip( translate('MainWindow', - 'Add an application to the list of tools')) - self.action_Preview_Panel.setText( - translate('MainWindow', '&Preview Pane')) + 'Add an application to the list of tools.')) + self.ModeDefaultItem.setText(translate('MainWindow', '&Default')) + self.ModeDefaultItem.setStatusTip( + translate('MainWindow', + 'Set the view mode back to the default.')) + self.ModeSetupItem.setText(translate('MainWindow', '&Setup')) + self.ModeSetupItem.setStatusTip( + translate('MainWindow', + 'Set the view mode to Setup.')) self.ModeLiveItem.setText(translate('MainWindow', '&Live')) + self.ModeLiveItem.setStatusTip( + translate('MainWindow', + 'Set the view mode to Live.')) class MainWindow(QtGui.QMainWindow, Ui_MainWindow): @@ -514,9 +557,12 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): QtCore.QObject.connect(self.ViewThemeManagerItem, QtCore.SIGNAL(u'triggered(bool)'), self.toggleThemeManager) - QtCore.QObject.connect(self.action_Preview_Panel, + QtCore.QObject.connect(self.ViewPreviewPanel, QtCore.SIGNAL(u'toggled(bool)'), - self.togglePreviewPanel) + self.setPreviewPanelVisibility) + QtCore.QObject.connect(self.ViewLivePanel, + QtCore.SIGNAL(u'toggled(bool)'), + self.setLivePanelVisibility) QtCore.QObject.connect(self.MediaManagerDock, QtCore.SIGNAL(u'visibilityChanged(bool)'), self.ViewMediaManagerItem.setChecked) @@ -526,27 +572,14 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): QtCore.QObject.connect(self.ThemeManagerDock, QtCore.SIGNAL(u'visibilityChanged(bool)'), self.ViewThemeManagerItem.setChecked) - QtCore.QObject.connect(self.PreviewController.Panel, - QtCore.SIGNAL(u'visibilityChanged(bool)'), - self.action_Preview_Panel.setChecked) QtCore.QObject.connect(self.HelpWebSiteItem, QtCore.SIGNAL(u'triggered()'), self.onHelpWebSiteClicked) QtCore.QObject.connect(self.HelpAboutItem, QtCore.SIGNAL(u'triggered()'), self.onHelpAboutItemClicked) - QtCore.QObject.connect(self.PluginItem, + QtCore.QObject.connect(self.SettingsPluginListItem, QtCore.SIGNAL(u'triggered()'), self.onPluginItemClicked) - QtCore.QObject.connect(self.OptionsSettingsItem, + QtCore.QObject.connect(self.SettingsConfigureItem, QtCore.SIGNAL(u'triggered()'), self.onOptionsSettingsItemClicked) - QtCore.QObject.connect(Receiver.get_receiver(), - QtCore.SIGNAL(u'theme_update_global'), self.defaultThemeChanged) - QtCore.QObject.connect(Receiver.get_receiver(), - QtCore.SIGNAL(u'openlp_version_check'), self.versionCheck) - QtCore.QObject.connect(Receiver.get_receiver(), - QtCore.SIGNAL(u'maindisplay_blank_check'), self.blankCheck) - QtCore.QObject.connect(Receiver.get_receiver(), - QtCore.SIGNAL(u'config_screen_changed'), self.screenChanged) - QtCore.QObject.connect(Receiver.get_receiver(), - QtCore.SIGNAL(u'maindisplay_status_text'), self.showStatusMessage) QtCore.QObject.connect(self.FileNewItem, QtCore.SIGNAL(u'triggered()'), self.ServiceManagerContents.onNewService) @@ -564,6 +597,25 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): QtCore.SIGNAL(u'toggled(bool)'), self.setAutoLanguage) self.LanguageGroup.triggered.connect(LanguageManager.set_language) + QtCore.QObject.connect(self.ModeDefaultItem, + QtCore.SIGNAL(u'triggered()'), + self.onModeDefaultItemClicked) + QtCore.QObject.connect(self.ModeSetupItem, + QtCore.SIGNAL(u'triggered()'), + self.onModeSetupItemClicked) + QtCore.QObject.connect(self.ModeLiveItem, + QtCore.SIGNAL(u'triggered()'), + self.onModeLiveItemClicked) + QtCore.QObject.connect(Receiver.get_receiver(), + QtCore.SIGNAL(u'theme_update_global'), self.defaultThemeChanged) + QtCore.QObject.connect(Receiver.get_receiver(), + QtCore.SIGNAL(u'openlp_version_check'), self.versionCheck) + QtCore.QObject.connect(Receiver.get_receiver(), + QtCore.SIGNAL(u'maindisplay_blank_check'), self.blankCheck) + QtCore.QObject.connect(Receiver.get_receiver(), + QtCore.SIGNAL(u'config_screen_changed'), self.screenChanged) + QtCore.QObject.connect(Receiver.get_receiver(), + QtCore.SIGNAL(u'maindisplay_status_text'), self.showStatusMessage) #warning cyclic dependency #RenderManager needs to call ThemeManager and #ThemeManager needs to call RenderManager @@ -607,7 +659,6 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): log.info(u'Load data from Settings') self.settingsForm.postSetUp() - #i18n def setAutoLanguage(self, value): self.LanguageGroup.setDisabled(value) LanguageManager.AutoLanguage = value @@ -695,6 +746,36 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): """ self.settingsForm.exec_() + def onModeDefaultItemClicked(self): + """ + Put OpenLP into "Default" view mode. + """ + self.MediaManagerDock.setVisible(True) + self.ServiceManagerDock.setVisible(True) + self.ThemeManagerDock.setVisible(True) + self.setPreviewPanelVisibility(True) + self.setLivePanelVisibility(True) + + def onModeSetupItemClicked(self): + """ + Put OpenLP into "Setup" view mode. + """ + self.MediaManagerDock.setVisible(True) + self.ServiceManagerDock.setVisible(True) + self.ThemeManagerDock.setVisible(False) + self.setPreviewPanelVisibility(True) + self.setLivePanelVisibility(False) + + def onModeLiveItemClicked(self): + """ + Put OpenLP into "Live" view mode. + """ + self.MediaManagerDock.setVisible(False) + self.ServiceManagerDock.setVisible(True) + self.ThemeManagerDock.setVisible(False) + self.setPreviewPanelVisibility(False) + self.setLivePanelVisibility(True) + def screenChanged(self): """ The screen has changed to so tell the displays to update_display @@ -787,10 +868,33 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): if self.ThemeManagerDock.isVisible() != visible: self.ThemeManagerDock.setVisible(visible) - def togglePreviewPanel(self): - previewBool = self.PreviewController.Panel.isVisible() - self.PreviewController.Panel.setVisible(not previewBool) - self.settingsmanager.togglePreviewPanel(not previewBool) + def setPreviewPanelVisibility(self, visible): + """ + Sets the visibility of the preview panel including saving the setting + and updating the menu. + + ``visible`` + A bool giving the state to set the panel to + True - Visible + False - Hidden + """ + self.PreviewController.Panel.setVisible(visible) + self.settingsmanager.set_preview_visibility(visible) + self.ViewPreviewPanel.setChecked(visible) + + def setLivePanelVisibility(self, visible): + """ + Sets the visibility of the live panel including saving the setting and + updating the menu. + + ``visible`` + A bool giving the state to set the panel to + True - Visible + False - Hidden + """ + self.LiveController.Panel.setVisible(visible) + self.settingsmanager.set_live_visibility(visible) + self.ViewLivePanel.setChecked(visible) def loadSettings(self): log.debug(u'Loading QSettings') diff --git a/openlp/plugins/alerts/alertsplugin.py b/openlp/plugins/alerts/alertsplugin.py index d5dd4e274..5b904e385 100644 --- a/openlp/plugins/alerts/alertsplugin.py +++ b/openlp/plugins/alerts/alertsplugin.py @@ -71,7 +71,7 @@ class AlertsPlugin(Plugin): self.toolsAlertItem.setText( translate('AlertsPlugin', '&Alert')) self.toolsAlertItem.setStatusTip( - translate('AlertsPlugin', 'Show an alert message')) + translate('AlertsPlugin', 'Show an alert message.')) self.toolsAlertItem.setShortcut(u'F7') self.serviceManager.parent.ToolsMenu.addAction(self.toolsAlertItem) QtCore.QObject.connect(self.toolsAlertItem, diff --git a/openlp/plugins/bibles/lib/biblestab.py b/openlp/plugins/bibles/lib/biblestab.py index 9eaea51b6..d31ebb571 100644 --- a/openlp/plugins/bibles/lib/biblestab.py +++ b/openlp/plugins/bibles/lib/biblestab.py @@ -45,7 +45,7 @@ class BiblesTab(SettingsTab): def setupUi(self): self.setObjectName(u'BiblesTab') - self.tabTitleVisible = translate('BiblesPlugin,BiblesTab', 'Bibles') + self.tabTitleVisible = translate('BiblesPlugin.BiblesTab', 'Bibles') self.BibleLayout = QtGui.QHBoxLayout(self) self.BibleLayout.setSpacing(8) self.BibleLayout.setMargin(8) diff --git a/resources/i18n/openlp_af.ts b/resources/i18n/openlp_af.ts index f3370fed9..4c86cd22b 100644 --- a/resources/i18n/openlp_af.ts +++ b/resources/i18n/openlp_af.ts @@ -1,4254 +1,3775 @@ - - - - BibleMediaItem - - - Quick - Vinnig - - - Ui_customEditDialog - - - Delete selected slide - Wis die geselekteerde skyfie uit - - - BiblesTab - - - ( and ) - ( en ) - - - RemoteTab - - - Remotes - Afstandbehere - - - Ui_EditSongDialog - - - &Remove - &Verwyder - - - Ui_AmendThemeDialog - - - Shadow Size: - Skaduwee Grote: - - - Ui_OpenSongExportDialog - - - Close - Maak toe - - - ThemeManager - - - Import Theme - Tema Invoer - - - Ui_AmendThemeDialog - - - Slide Transition - Skyfie Verandering - - - SongMaintenanceForm - - - Are you sure you want to delete the selected book? - Is jy seker jy wil die geselekteerde boek uitwis? - - - ThemesTab - - - Theme level - Tema vlak - - - BibleMediaItem - - - Bible - Bybel - - - ServiceManager - - - Save Changes to Service? - Stoor Veranderinge aan Diens? - - - SongUsagePlugin - - - &Delete recorded data - &Wis opname data uit - - - Ui_OpenLPExportDialog - - - Song Title - Lied Titel - - - Ui_customEditDialog - - - Edit selected slide - Redigeer geselekteerde skyfie - - - SongMediaItem - - - CCLI Licence: - CCLI Lisensie: - - - Ui_SongUsageDeleteDialog - - - Audit Delete - Wis Oudit Uit - - - Ui_BibleImportWizard - - - Bible Import Wizard - Bybel Invoer Gids - - - Ui_customEditDialog - - - Edit All - Redigeer Alles - - - Ui_ServiceNoteEdit - - - Service Item Notes - Diens Item Notas - - - SongMaintenanceForm - - - Couldn't save your author! - Kon nie u skrywer stoor nie! - - - Ui_customEditDialog - - - Clear - Skoon - - - ThemesTab - - - Global theme - Globale tema - - - SongUsagePlugin - - - Start/Stop live song usage recording - Begin/Stop regstreekse lied-gebruik opname - - - MainWindow - - - The Main Display has been blanked out - Die Hoof Skerm is blanko - - - Ui_OpenSongExportDialog - - - Lyrics - Lerieke - - - Ui_AlertDialog - - - Display - Vertoon - - - Ui_customEditDialog - - - Delete - Wis uit - - - Ui_EditVerseDialog - - - Verse - Vers - - - SongMaintenanceForm - - - This author can't be deleted, they are currently assigned to at least one song! - Die skrywer kan nie uitgewis word nie want die skrywer is aan minstens een lied toegeken! - - - ThemeManager - - - Create a new theme - Skep 'n nuwe tema - - - Ui_MainWindow - - - Open an existing service - Maak 'n bestaande diens oop - - - SlideController - - - Move to previous - Beweeg na vorige - - - SongsPlugin - - - &Song - &Lied - - - Ui_PluginViewDialog - - - Plugin Details - Inprop Besonderhede - - - AlertsTab - - - pt - pt - - - Edit History: - Redigeer Geskiedenis: - - - Ui_MainWindow - - - &File - &Lêer - - - SongMaintenanceForm - - - Couldn't add your book! - Kan nie die boek byvoeg nie! - - - BiblesTab - - - verse per line - vers per lyn - - - Ui_customEditDialog - - - Theme: - Tema: - - - SongMaintenanceForm - - - Error - Fout - - - Ui_BibleImportWizard - - - Bible: - Bybel: - - - ImportWizardForm - - - You need to specify a file with books of the Bible to use in the import! - Spesifiseer 'n lêer met die boeke van die Bybel vir gebruik tydens die invoer! - - - ThemeManager - - - Delete Theme - Wis Tema Uit - - - SplashScreen - - - Splash Screen - Spatsel Skerm - - - SongMediaItem - - - Song - Lied - - - SongUsageDeleteForm - - - Delete Selected Audit Events? - Wis Geselekteerde Oudit Aksies uit? - - - Ui_OpenSongExportDialog - - - Song Title - Lied Titel - - - Ui_AmendThemeDialog - - - Bottom - Onder - - - Ui_MainWindow - - - List the Plugins - Lys die Inproppe - - - SongMaintenanceForm - - - No author selected! - Geen skrywer geselekteer nie! - - - SongUsagePlugin - - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - <b>SongUsage Inprop</b><br>Hierdie inprop stoor die gebruik van liedere en wanneer dit gebruik was gedurende 'n regstreekse diens. - - - Ui_customEditDialog - - - Move slide Up 1 - Beweeg skyfie 1 plek Op - - - SongsPlugin - - - OpenSong - OpenSong - - - AlertsManager - - - Alert message created and delayed - Waarskuwings boodskap geskep en vertraag - - - Ui_EditSongDialog - - - Alternative Title: - Alternatiewe Titel: - - - ServiceManager - - - Open Service - Maak Diens Oop - - - BiblesTab - - - Display Style: - Vertoon Styl: - - - Ui_AmendThemeDialog - - - Image - Beeld - - - EditSongForm - - - You need to enter a song title. - U moet 'n lied titel invoer. - - - ThemeManager - - - Error - Fout - - - ImportWizardForm - - - Invalid Bible Location - Ongeldige Bybel Ligging - - - ThemesTab - - - Global level - Globale vlak - - - ThemeManager - - - Make Global - Maak Globaal - - - Ui_MainWindow - - - &Service Manager - &Diens Bestuurder - - - Ui_OpenLPImportDialog - - - Author - Skrywer - - - Ui_AmendThemeDialog - - - Height: - Hoogte: - - - ThemeManager - - - Delete a theme - Wis 'n tema uit - - - Ui_BibleImportWizard - - - Crosswalk - CosswalkSover ek verstaan is Crosswalk sagteware. Verwysings na sagteware, akronieme en so meer bly in die oorspronklike vorm. - - - SongBookForm - - - Error - Fout - - - Ui_AuthorsDialog - - - Last name: - Van: - - - Ui_customEditDialog - - - Title: - Titel: - - - ImportWizardForm - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - Stel Kopiereg op vir die spesifieke Bybel! Bybels in die Publieke Omgewing moet so gemerk word. - - - SongMediaItem - - - Maintain the lists of authors, topics and books - Handhaaf die lys van skrywers, onderwerpe en boeke - - - Ui_AlertEditDialog - - - Save - Stoor - - - EditCustomForm - - - You have unsaved data - U het data wat nie gestoor is nie - - - Ui_AmendThemeDialog - - - Outline - Buitelyn - - - BibleMediaItem - - - Text Search - Teks Soektog - - - Ui_BibleImportWizard - - - CSV - KGW - - - SongUsagePlugin - - - Delete song usage to specified date - Wis lied-gebruik uit tot gespesifiseerde datum - - - Ui_SongUsageDetailDialog - - - Report Location - Rapporteer Ligging - - - Ui_BibleImportWizard - - - OpenSong - OpenSong - - - Ui_MainWindow - - - Open Service - Maak Diens Oop - - - BibleMediaItem - - - Find: - Vind: - - - ImageMediaItem - - - Select Image(s) - Selekteer beeld(e) - - - BibleMediaItem - - - Search Type: - Soek Tipe: - - - Ui_MainWindow - - - Media Manager - Media Bestuurder - - - Alt+F4 - Alt+F4 - - - MediaManagerItem - - - &Preview - &Voorskou - - - GeneralTab - - - CCLI Details - CCLI Inligting - - - BibleMediaItem - - - Bible not fully loaded - Bybel nie tenvolle gelaai nie - - - Ui_MainWindow - - - Toggle the visibility of the Preview Panel - Wissel die sigbaarheid van die Voorskou Paneel - - - ImportWizardForm - - - Bible Exists - Bybel Bestaan - - - Ui_MainWindow - - - &User Guide - &Gebruikers Gids - - - SongUsageDeleteForm - - - Are you sure you want to delete selected Audit Data? - Is u seker dat u die Oudit Data wil uitwis? - - - Ui_MainWindow - - - Set the interface language to English - Verstel die koppelvlak taal na Engels - - - Ui_AmendThemeDialog - - - Main Font - Hoof Skrif - - - ImportWizardForm - - - Empty Copyright - Leë Kopiereg - - - CustomPlugin - - - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> - <b>Aanpas Inprop</b><br/>Hierdie inprop vertoon skyfies op dieselfde manier as wat liedere vertoon word. Hierdie inprop beskik oor meer vryheid as die liedere inprop.<br/> - - - AuthorsForm - - - You need to type in the first name of the author. - U moet die naam van die skrywer invul. - - - SongsTab - - - Display Verses on Live Tool bar: - Vertoon Verse op Regstreekse Gereedskap-balk: - - - ServiceManager - - - Move to top - Skuif na bo - - - ImageMediaItem - - - Override background - Oorskryf agtergrond - - - Ui_SongMaintenanceDialog - - - Edit - Redigeer - - - Ui_OpenSongExportDialog - - - Select All - Selekteer Almal - - - ThemesTab - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - Gebruik die tema van elke lied in die lied-databasis. As 'n lied nie 'n geassosieërde tema het nie, gebruik die diens se tema. As die diens nie 'n tema het nie, gebruik dan die globale tema. - - - PresentationMediaItem - - - Presentation - Aanbieding - - - Ui_AmendThemeDialog - - - Solid Color - Soliede Kleur - - - CustomTab - - - Custom - Aangepas - - - Ui_OpenLPImportDialog - - - Ready to import - Gereed vir invoer - - - MainWindow - - - OpenLP version %s has been updated to version %s - -You can obtain the latest version from http://openlp.org - OpenLP weergawe %s is opdateer na weergawe %s - -U kan die nuutste weergawe verkry van http://openlp.org - - - Ui_BibleImportWizard - - - File Location: - Lêer Ligging: - - - SlideController - - - Go to Verse - Gaan na Vers - - - Ui_MainWindow - - - &Import - &Invoer - - - Quit OpenLP - Sluit OpenLP Af - - - Ui_BibleImportWizard - - - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - Hierdie gids sal u help om Bybels van 'n verskeidenheid vormate in te voer. Kliek die volgende knoppie hieronder om die proses te begin en 'n formaat te kies om in te voer. - - - SongMaintenanceForm - - - Couldn't add your topic! - Kon nie u onderwerp byvoeg nie! - - - ImportWizardForm - - - Empty Version Name - Weergawe Naam is Leeg - - - Ui_MainWindow - - - &Preview Panel - &Voorskou Paneel - - - SlideController - - - Start continuous loop - Begin aaneenlopende lus - - - ServiceManager - - - Move down - Beweeg af - - - GeneralTab - - - primary - primêre - - - Ui_EditSongDialog - - - Add a Theme - Voeg 'n Tema by - - - Ui_MainWindow - - - &New - &Nuwe - - - Ui_customEditDialog - - - Credits: - Krediete: - - - SlideController - - - Live - Regstreeks - - - GeneralTab - - - Show blank screen warning - Vertoon leë skerm waarskuwing - - - BiblesTab - - - continuous - aaneenlopend - - - Ui_EditVerseDialog - - - Number - Nommer - - - GeneralTab - - - Application Startup - Program Aanskakel - - - Ui_AmendThemeDialog - - - Use Default Location: - Gebruik Verstek Ligging: - - - Ui_OpenSongImportDialog - - - Import - Invoer - - - Ui_AmendThemeDialog - - - Other Options - Ander Opsies - - - Ui_EditSongDialog - - - Verse Order: - Vers Orde: - - - Ui_SongUsageDetailDialog - - - ASelect Date Range - Selekteer Datum Reeks - - - Ui_MainWindow - - - Default Theme: - Verstek Tema: - - - Toggle Preview Panel - Wissel Voorskou Paneel - - - SongMediaItem - - - Lyrics - Lerieke - - - Ui_OpenLPImportDialog - - - Progress: - Vordering: - - - Ui_AmendThemeDialog - - - Shadow - Skaduwee - - - GeneralTab - - - Select monitor for output display: - Selekteer monitor vir uitgaande vertoning: - - - Ui_MainWindow - - - &Settings - Ver&stellings - - - Ui_AmendThemeDialog - - - Italics - Kursief - - - ServiceManager - - - Create a new service - Skep 'n nuwe diens - - - Ui_AmendThemeDialog - - - Background: - Agtergrond: - - - Ui_OpenLPImportDialog - - - openlp.org Song Importer - openlp.org Lied Invoerder - - - Ui_BibleImportWizard - - - Copyright: - Kopiereg: - - - ThemesTab - - - Service level - Diens vlak - - - BiblesTab - - - [ and ] - [ en ] - - - Ui_BibleImportWizard - - - Verse Location: - Vers Ligging: - - - MediaManagerItem - - - You must select one or more items - P moet meer as een item selekteer - - - GeneralTab - - - Application Settings - Program Verstellings - - - ServiceManager - - - Save this service - Stoor hierdie diens - - - ImportWizardForm - - - Open Books CSV file - Maak Boeke CSV lêer oop - - - GeneralTab - - - SongSelect Username: - SongSelect Gebruikers naam: - - - Ui_AmendThemeDialog - - - X Position: - X Posisie: - - - BibleMediaItem - - - No matching book could be found in this Bible. - Geen bypassende boek kon in dié Bybel gevind word nie. - - - Ui_BibleImportWizard - - - Server: - Bediener: - - - SongMaintenanceForm - - - Couldn't save your book! - Kon nie u boek stoor nie! - - - Ui_EditVerseDialog - - - Ending - Slot - - - CustomTab - - - Display Footer: - Vertoon Voetnota: - - - ImportWizardForm - - - Invalid OpenSong Bible - Ongeldige OpenSong Bybel - - - GeneralTab - - - CCLI Number: - CCLI Nommer: - - - Ui_AmendThemeDialog - - - Center - Middel - - - ServiceManager - - - Theme: - Tema: - - - Ui_MainWindow - - - &Live - &Regstreeks - - - Ui_AmendThemeDialog - - - <Color2> - <Color2> - - - Ui_MainWindow - - - English - Engels - - - ImageMediaItem - - - You must select one or more items - U moet een of meer items selekteer - - - Ui_AuthorsDialog - - - First name: - Voornaam: - - - Ui_OpenLPExportDialog - - - Select openlp.org export filename: - Selekteer openlp.org uitvoer lêer-naam: - - - Ui_BibleImportWizard - - - Permission: - Toestemming: - - - Ui_OpenSongImportDialog - - - Close - Maak toe - - - Ui_AmendThemeDialog - - - Opaque - Deursigtigheid - - - SongMaintenanceForm - - - This book can't be deleted, it is currently assigned to at least one song! - Die boek kan nie uitgewis word nie, dit is toegeken aan ten minste een lied! - - - ImportWizardForm - - - Your Bible import failed. - U Bybel invoer het misluk. - - - SlideController - - - Start playing media - Begin media speel - - - SongMediaItem - - - Type: - Tipe: - - - Ui_AboutDialog - - - Close - Maak toe - - - TopicsForm - - - You need to type in a topic name! - U moet 'n onderwerp naam invoer! - - - Ui_OpenSongExportDialog - - - Song Export List - Lied Uitvoer Lys - - - BibleMediaItem - - - Dual: - Dubbel: - - - ImageTab - - - sec - sec - - - ServiceManager - - - Delete From Service - Verwyder Van Diens - - - GeneralTab - - - Automatically open the last service - Maak vanself die laaste diens oop - - - Ui_OpenLPImportDialog - - - Song Import List - Lied Invoer Lys - - - Ui_OpenSongExportDialog - - - Author - Skrywer - - - Ui_AmendThemeDialog - - - Outline Color: - Buitelyn Kleur: - - - Ui_BibleImportWizard - - - Select Import Source - Selekteer Invoer Bron - - - Ui_MainWindow - - - F9 - F9 - - - F8 - F8 - - - ServiceManager - - - &Change Item Theme - &Verander Item Tema - - - Ui_OpenSongImportDialog - - - OpenSong Folder: - OpenSong Gids: - - - Ui_OpenLPImportDialog - - - Import File Song List - Voer Lêer Lied Lys in - - - Ui_customEditDialog - - - Edit Custom Slides - Redigeer Aangepaste Skyfies - - - Ui_BibleImportWizard - - - Set up the Bible's license details. - Stel hierdie Bybel se lisensie besonderhede op. - - - Ui_AmendThemeDialog - - - Alignment - Belyning - - - SongMaintenanceForm - - - Delete Book - Wis Boek Uit - - - ThemeManager - - - Edit a theme - Redigeer 'n tema - - - Ui_BibleImportWizard - - - BibleGateway - BibleGateway - - - GeneralTab - - - Preview Next Song from Service Manager - Sien Voorskou van Volgende Lied vanaf Diens Bestuurder - - - Ui_EditSongDialog - - - Title && Lyrics - Titel && Lirieke - - - SongMaintenanceForm - - - No book selected! - Geen boek geselekteer nie! - - - SlideController - - - Move to live - Verskuif na regstreekse skerm - - - Ui_EditVerseDialog - - - Other - Ander - - - Ui_EditSongDialog - - - Theme - Tema - - - ServiceManager - - - Save Service - Stoor Diens - - - Ui_MainWindow - - - Save the current service to disk - Stoor die huidige diens na skyf - - - BibleMediaItem - - - Chapter: - Hoofstuk: - - - Search - Soek - - - PresentationTab - - - Available Controllers - Beskikbare Beheerders - - - ImportWizardForm - - - Open Verses CSV file - Maak Verse CSV lêer oop - - - TopicsForm - - - Error - Fout - - - RemoteTab - - - Remotes Receiver Port - Afstandbeheer Ontvanger Poort - - - Ui_MainWindow - - - &View - &Bekyk - - - Ui_AmendThemeDialog - - - Normal - Normaal - - - Ui_OpenLPExportDialog - - - Close - Maak toe - - - Ui_BibleImportWizard - - - Username: - Gebruikersnaam: - - - ThemeManager - - - Edit Theme - Wysig Tema - - - SlideController - - - Preview - Voorskou - - - Ui_AlertDialog - - - Alert Message - Waarskuwing Boodskap - - - ImportWizardForm - - - Finished import. - Invoer voltooi. - - - You need to specify a file of Bible verses to import! - Spesifiseer 'n lêer van Bybel verse om in te voer! - - - AlertsTab - - - Location: - Ligging: - - - Ui_EditSongDialog - - - Authors, Topics && Book - Skrywer, Onderwerpe && Boek - - - EditSongForm - - - You need to enter some verses. - U moet 'n paar verse invoer. - - - Ui_BibleImportWizard - - - Download Options - Aflaai Opsies - - - BiblePlugin - - - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - <strong>Bybel Miniprogram</strong><br/>Dié miniprogram laat toe dat Bybel verse van verskillende bronne op die skerm vertoon kan word gedurende die diens. - - - Ui_EditSongDialog - - - Copyright Information - Kopiereg Informasie - - - Ui_MainWindow - - - &Export - &Uitvoer - - - Ui_AmendThemeDialog - - - Bold - Vetgedruk - - - SongsPlugin - - - Export songs in OpenLP 2.0 format - Voer liedere uit in OpenLP 2.0 formaat - - - MediaManagerItem - - - Load a new - Laai 'n nuwe - - - AlertEditForm - - - Missing data - Verlore data - - - SongsPlugin - - - <b>Song Plugin</b> <br>This plugin allows Songs to be managed and displayed.<br> - <b>Song Miniprogram</b> <br/>Hierdie miniprogram laat toe dat Liedere bestuur en vertoon kan word.<br/> - - - Ui_AmendThemeDialog - - - Footer Font - Voetnota Skriftipe - - - EditSongForm - - - Invalid verse entry - vX - Ongeldige vers inskrywing - vX - - - MediaManagerItem - - - Delete the selected item - Wis geselekteerde item uit - - - Ui_OpenLPExportDialog - - - Export - Voer uit - - - Ui_BibleImportWizard - - - Location: - Ligging: - - - BibleMediaItem - - - Keep - Behou - - - SongUsagePlugin - - - Generate report on Song Usage - Genereer verslag van Lied Gebruik - - - Ui_EditSongDialog - - - Topic - Onderwerp - - - Ui_MainWindow - - - &Open - Maak &Oop - - - AuthorsForm - - - You haven't set a display name for the author, would you like me to combine the first and last names for you? - U het nie 'n vertoon naam vir die skrywer gegee nie, moet ek die voornaam en van kombineer? - - - AmendThemeForm - - - Slide Height is %s rows - Skyfie Hoogte is %s rye - - - Ui_EditVerseDialog - - - Pre-Chorus - Voor-Refrein - - - Ui_EditSongDialog - - - Lyrics: - Lirieke: - - - Ui_AboutDialog - - - Project Lead - Raoul "superfly" Snyman - -Developers - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Testers - Wesley "wrst" Stout - Projek Leier -Raoul "superfly" Snyman - -Onwikkelaars -Tim "TRB143" Bentley -Jonathan "gushie" Corwin -Michael "cocooncrash" Gorven -Scott "sguerrieri" Guerrieri -Raoul "superfly" Snyman -Maikel Stuivenberg -Martin "mijiti" Thompson -Jon "Meths" Tibble -Carsten "catini" Tingaard - -Testers -Wesley "wrst" Stout - - - SongMediaItem - - - Titles - Titels - - - Ui_OpenLPExportDialog - - - Lyrics - Lirieke - - - PresentationMediaItem - - - Present using: - Bied aan met: - - - SongMediaItem - - - Clear - Maak skoon - - - ServiceManager - - - &Live Verse - &Lewendige Vers - - - Ui_OpenSongImportDialog - - - Progress: - Vordering: - - - Ui_MainWindow - - - Toggle Theme Manager - Wissel Tema Bestuurder - - - Ui_AlertDialog - - - Alert Text: - Waarskuwing Teks: - - - Ui_EditSongDialog - - - Edit - Redigeer - - - AlertsTab - - - Font Color: - Skrif Kleur: - - - Ui_AmendThemeDialog - - - Theme Maintenance - Tema Onderhoud - - - CustomTab - - - Custom Display - Aangepasde Vertoning - - - Ui_OpenSongExportDialog - - - Title - Titel - - - Ui_AmendThemeDialog - - - <Color1> - <Color1> - - - Ui_EditSongDialog - - - Authors - Skrywers - - - ThemeManager - - - Export Theme - Voer Tema Uit - - - ServiceManager - - - (N) - (N) - - - Ui_SongBookDialog - - - Name: - Naam: - - - Ui_AuthorsDialog - - - Author Maintenance - Skrywer Onderhoud - - - Ui_AmendThemeDialog - - - Font Footer - Skrif Voetnota - - - BiblesTab - - - Verse Display - Vers Vertoning - - - Ui_MainWindow - - - &Options - &Opsies - - - BibleMediaItem - - - Results: - &Resultate: - - - Ui_OpenLPExportDialog - - - Full Song List - Volle Liedere Lys - - - SlideController - - - Move to last - Verskuif na laaste posisie - - - Ui_OpenLPExportDialog - - - Progress: - Vordering: - - - Ui_SongMaintenanceDialog - - - Add - Byvoeg - - - SongMaintenanceForm - - - Are you sure you want to delete the selected author? - Is u seker u wil die geselekteerde skrywer uitwis? - - - SongUsagePlugin - - - Song Usage Status - Lied Gebruik Status - - - BibleMediaItem - - - Verse Search - Soek Vers - - - Ui_SongBookDialog - - - Edit Book - Redigeer Boek - - - EditSongForm - - - Save && Preview - Stoor && Voorskou - - - Ui_SongBookDialog - - - Publisher: - Uitgewer: - - - Ui_AmendThemeDialog - - - Font Weight: - Skrif Donkerheid: - - - Ui_BibleImportWizard - - - Bible Filename: - Bybel Lêernaam: - - - Ui_AmendThemeDialog - - - Transparent - Deursigtig - - - SongMediaItem - - - Search - Soek - - - Ui_BibleImportWizard - - - Format: - Formaat: - - - Ui_AmendThemeDialog - - - Background - Agtergrond - - - Ui_BibleImportWizard - - - Importing - Invoer - - - Ui_customEditDialog - - - Edit all slides - Redigeer alle skyfies - - - SongsTab - - - Enable search as you type: - Stel soek soos u tik in staat: - - - Ui_MainWindow - - - Ctrl+S - Ctrl+S - - - SongMediaItem - - - Authors - Skrywers - - - Ui_PluginViewDialog - - - Active - Aktief - - - SongMaintenanceForm - - - Couldn't save your topic! - Kon nie u onderwerp stoor nie! - - - Ui_MainWindow - - - Ctrl+O - Ctrl+O - - - Ctrl+N - Ctrl+N - - - SongMaintenanceForm - - - Couldn't add your author! - Kon nie u skrywer byvoeg nie! - - - Ui_AlertEditDialog - - - Edit - Redigeer - - - Ui_EditSongDialog - - - Song Editor - Lied Redigeerder - - - AlertsTab - - - Font - Skrif - - - SlideController - - - Edit and re-preview Song - Redigeer en sien weer 'n voorskou van die Lied - - - Delay between slides in seconds - Vertraging in sekondes tussen skyfies - - - MediaManagerItem - - - &Edit - R&edigeer - - - Ui_AmendThemeDialog - - - Vertical - Vertikaal - - - Width: - Wydte: - - - ThemeManager - - - You are unable to delete the default theme! - U is nie in staat om die verstek tema uit te wis nie! - - - ThemesTab - - - Use the global theme, overriding any themes associated with either the service or the songs. - Gebruik die globale tema om enige temas wat met die diens of liedere geassosieer is te vervang. - - - BibleMediaItem - - - Version: - Weergawe: - - - Ui_AboutDialog - - - OpenLP <version> build <revision> - Open Source Lyrics Projection + + + + AboutForm + + + About OpenLP + Aangaande OpenLP + + + + OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version> bou <revision> - Open Source Lyrics Projection + + + + + About + Aangaande + + + + Project Lead + Raoul "superfly" Snyman -OpenLP is gratis kerk aanbieding sagteware of lirieke projeksie sagteware wat gebruik word vir die vertoning van liedere, Bybel verse, video's, beelde tot ook aanbiedings (as OpenOffice.org, PowerPoint of PowerPoint Viewer geïnstalleer is) vir kerklike aanbidding deur middel van 'n rekenaar en 'n data projektor. +Developers + Tim "TRB143" Bentley + Jonathan "gushie" Corwin + Michael "cocooncrash" Gorven + Scott "sguerrieri" Guerrieri + Raoul "superfly" Snyman + Martin "mijiti" Thompson + Jon "Meths" Tibble -Vind meer uit oor OpenLP: http://openlp.org/ +Contributors + Meinert "m2j" Jordan + Christian "crichter" Richter + Maikel Stuivenberg + Carsten "catini" Tingaard -OpenLP is geskryf en word onderhou deur vrywilligers. As u graag wil sien dat meer Christelike sagteware geskryf word, oorweeg dit asseblief om by te dra deur die knoppie hieronder te gebruik. - - - SongsPlugin +Testers + Philip "Phill" Ridout + Wesley "wrst" Stout (lead) + +Packagers + Thomas "tabthorpe" Abthorpe (FreeBSD) + Tim "TRB143" Bentley (Fedora) + Michael "cocooncrash" Gorven (Ubuntu) + Matthias "matthub" Hub (Mac OS X) + Raoul "superfly" Snyman (Windows) + + + - - OpenLP 2.0 - OpenLP 2.0 - - - ServiceManager + + Credits + Krediete + - - New Service - Nuwe Diens - - - Ui_TopicsDialog + + Copyright © 2004-2010 Raoul Snyman +Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard + +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. + + +GNU GENERAL PUBLIC LICENSE +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification follow. + +GNU GENERAL PUBLIC LICENSE +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: + +a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. + +b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. + +c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. + +3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: + +a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. + +This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version', you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. + +<one line to give the program's name and a brief idea of what it does.> +Copyright (C) <year> <name of author> + +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it starts in an interactive mode: + +Gnomovision version 69, Copyright (C) year name of author +Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type "show w". +This is free software, and you are welcome to redistribute it under certain conditions; type "show c" for details. + +The hypothetical commands "show w" and "show c" should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than "show w" and "show c"; they could even be mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: + +Yoyodyne, Inc., hereby disclaims all copyright interest in the program "Gnomovision" (which makes passes at compilers) written by James Hacker. + +<signature of Ty Coon>, 1 April 1989 +Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. + + - - Topic name: - Onderwerp naam: - - - ThemeManager + + License + Lisensie + - - File is not a valid theme! - Lêer is nie 'n geldige tema nie! - - - Ui_BibleImportWizard + + Contribute + Dra By + - - License Details - Lisensie Besonderhede - - - Ui_AboutDialog + + Close + Maak toe + - - License - Lisensie - - - Ui_EditSongDialog + + build %s + + + + + AlertsPlugin - - R&emove - V&erwyder - - - Ui_AmendThemeDialog + + &Alert + W&aarskuwing + - - Middle - Middel - - - Ui_customEditDialog + + <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen + <b>Waarskuwing Inprop</b><br/>Hierdie inprop beheer die vertoning van waarskuwings op die aanbieding skerm + - - Save - Stoor - - - AlertEditForm + + Show an alert message. + + + + + AlertsPlugin.AlertForm - - Item selected to Edit - Item geselekteer vir Redigering - - - BibleMediaItem + + Alert Message + Waarskuwing Boodskap + - - From: - Vanaf: - - - Ui_AmendThemeDialog + + Alert &text: + + - - Shadow Color: - Skaduwee Kleur: - - - ServiceManager + + &Parameter(s): + + - - &Notes - &Notas - - - Ui_MainWindow + + &New + &Nuwe + - - E&xit - &Uitgang - - - Ui_OpenLPImportDialog + + &Save + &Stoor + - - Close - Maak toe - - - MainWindow + + &Delete + + - - OpenLP Version Updated - OpenLP Weergawe is Opdateer - - - Ui_customEditDialog + + Displ&ay + + - - Replace edited slide - Vervang geredigeerde skyfie + + Display && Cl&ose + + - - Add new slide at bottom - Voeg nuwe skyfie aan die onderkant by - - - EditCustomForm + + &Close + + - - You need to enter a title - U moet 'n titel invoer - - - ThemeManager + + New Alert + + - - Theme Exists - Tema Bestaan - - - Ui_MainWindow + + You haven't specified any text for your alert. Please type in some text before clicking New. + + + + + AlertsPlugin.AlertsManager - - &Help - &Hulp - - - Ui_EditVerseDialog + + Alert message created and displayed. + + + + + AlertsPlugin.AlertsTab - - Bridge - Brug - - - Ui_OpenSongExportDialog + + Alerts + Waarskuwings + - - OpenSong Song Exporter - OpenSong Lied Uitvoerder - - - Ui_AmendThemeDialog + + Font + Skrif + - - Vertical Align: - Vertikale Belyning: - - - TestMediaManager + + Font Name: + Skrif Naam: + - - Item2 - Item2 + + Font Color: + + - - Item1 - Item1 - - - Ui_AmendThemeDialog + + Background Color: + Agtergrond Kleur: + - - Top - Bokant - - - BiblesTab + + Font Size: + Skrif Grootte: + - - Display Dual Bible Verses - Vertoon Dubbel Bybel Verse - - - Ui_MainWindow + + pt + pt + - - Toggle Service Manager - Wissel Diens Bestuurder - - - MediaManagerItem + + Alert timeout: + Waarskuwing tydgrens: + - - &Add to Service - &Voeg by Diens - - + + s + s + + + + Location: + Ligging: + + + + Preview + Voorskou + + + + openlp.org + openlp.org + + + + Top + + + + + Middle + Middel + + + + Bottom + Onder + + + AmendThemeForm - - First Color: - Eerste Kleur: - - - ThemesTab + + Theme Maintenance + Tema Onderhoud + - - Song level - Lied vlak - - - alertsPlugin + + &Visibility: + + - - Show an alert message - Vertoon 'n waarskuwing boodskap - - - Ui_MainWindow + + Opaque + Deursigtigheid + - - Ctrl+F1 - Ctrl+F1 + + Transparent + Deursigtig + - - Save the current service under a new name - Stoor die huidige diens onder 'n nuwe naam - - - Ui_OpenLPExportDialog + + Type: + Tipe: + - - Remove Selected - Verwyder Geselekteerde - - - ThemeManager + + Solid Color + Soliede Kleur + - - Delete theme - Wis tema uit - - - ImageTab + + Gradient + Gradiënt + - - Image Settings - Beeld Verstellings - - - Ui_OpenSongImportDialog + + Image + Beeld + - - OpenSong Song Importer - OpenSong Lied Invoerder - - - SongUsagePlugin + + Image: + Beeld: + - - &Extract recorded data - V&erkry aangetekende data - - - AlertsTab + + Gradient: + + - - Font Name: - Skrif Naam: - - - Ui_MainWindow + + Horizontal + Horisontaal + - - &Web Site - &Web Tuiste - - - MediaManagerItem + + Vertical + Vertikaal + - - Send the selected item live - Stuur die geselekteerde item na regstreekse vertoning - - - Ui_MainWindow + + Circular + Sirkelvormig + - - M&ode - M&odus + + &Background + + - - Translate the interface to your language - Vertaal die koppelvlak na u taal + + Main Font + Hoof Skrif + - - Service Manager - Diens Bestuurder - - - CustomMediaItem + + Font: + Skrif: + - - Custom - Pas aan - - - ImageMediaItem + + Color: + + - - No items selected... - Geen items geselekteer nie... - - - Ui_BibleImportWizard + + Size: + Grootte: + - - OSIS - OSIS - - - SongsPlugin + + pt + pt + - - openlp.org 1.0 - openlp.org 1.0 - - - Ui_MainWindow + + Wrap indentation: + + - - &Theme - &Tema - - - Ui_EditVerseDialog + + Adjust line spacing: + + - - Edit Verse - Redigeer Vers - - - Ui_MainWindow + + Normal + Normaal + - - &Language - Taa&l - - - ServiceManager + + Bold + Vetgedruk + - - Move to end - Verskuif na einde + + Italics + Kursief + - - Your service is unsaved, do you want to save those changes before creating a new one ? - U diens is nie gestoor nie. Wil u daardie veranderinge stoor voordat 'n nuwe een geskep word? - - - Ui_OpenSongExportDialog + + Bold/Italics + Bold/Italics + - - Remove Selected - Verwyder Geselekteerde - - - SongMediaItem + + Style: + + - - Search: - Soek: - - - MainWindow + + Display Location + Vertoon Ligging + - - Save Changes to Service? - Stoor Veranderinge na die Diens? + + X position: + + - - Your service has changed, do you want to save those changes? - U diens het verander. Wil u daardie veranderinge stoor? - - - EditSongForm + + Y position: + + - - Invalid verse entry - values must be Numeric, I,B,C,T,P,E,O - Ongeldige vers invoer - waardes moet Numeries, I,B,C,T,P,E,O wees - - - Ui_EditSongDialog + + Width: + Wydte: + - - &Add to Song - &Voeg by Lied - - - Ui_MainWindow + + Height: + Hoogte: + - - &About - &Aangaande - - - BiblesTab + + px + px + - - Only show new chapter numbers - Vertoon net nuwe hoofstuk nommers - - - ImportWizardForm + + &Main Font + + - - You need to specify a version name for your Bible! - U moet 'n weergawe naam spesifiseer vir die Bybel! - - - Ui_AlertEditDialog + + Footer Font + Voetnota Skriftipe + - - Delete - Wis uit - - - EditCustomForm + + &Footer Font + + - - Error - Fout - - - ThemesTab + + Outline + Buitelyn + - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - Gebruik die tema van die diens en verplaas enige van die individuele liedere se temas. As die diens nie 'n tema het nie, gebruik dan die globale tema. - - - SongMaintenanceForm + + Outline size: + + - - This topic can't be deleted, it is currently assigned to at least one song! - Hierdie onderwerp kan nie uitgewis word nie want dit is aan ten minste een lied toegeken! - - - AlertEditForm + + Outline color: + + - - Item selected to Add - Item geselekteer vir Byvoegging - - - Ui_AmendThemeDialog + + Show outline: + + - - Right - Regs - - - ThemeManager + + Shadow + Skaduwee + - - Save Theme - (%s) - Stoor Tema - (%s) - - - ImageMediaItem + + Shadow size: + + - - Allow background of live slide to be overridden - Laat toe dat die agtergrond van die regstreekse skyfie verplaas kan word. - - - MediaManagerItem + + Shadow color: + + - - Add the selected item(s) to the service - Voeg die geselekteerde item(s) by die diens - - - AuthorsForm + + Show shadow: + + - - Error - Fout - - - BibleMediaItem + + Alignment + Belyning + - - Book: - Boek: - - - Ui_AmendThemeDialog + + Horizontal align: + + - - Font Color: - Skrif Kleur: - - - Ui_OpenLPImportDialog + + Left + Links + - - Select openlp.org songfile to import: - Kies openlp.org liedlêer om in te voer: - - - Ui_SettingsDialog + + Right + Regs + - - Settings - Verstellings - - - BiblesTab + + Center + Middel + - - Layout Style: - Uitleg Styl: - - - MediaManagerItem + + Vertical align: + + - - Edit the selected - Redigeer die geselekteerde - - - SlideController + + Top + + - - Move to next - Verskuif na volgende - - - Ui_MainWindow + + Middle + Middel + - - &Plugin List - In&prop Lys - - + + Bottom + Onder + + + + Slide Transition + Skyfie Verandering + + + + &Other Options + + + + + Preview + Voorskou + + + + All Files + + + + + Select Image + + + + + First color: + + + + + Second color: + + + + + Slide height is %s rows. + + + + + Theme &name: + + + + + Use default location + + + + + Transition active + + + + + BibleDB + + + Book not found + + + + BiblePlugin - - &Bible - &Bybel - - - Ui_BibleImportWizard + + <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. + <strong>Bybel Miniprogram</strong><br/>Dié miniprogram laat toe dat Bybel verse van verskillende bronne op die skerm vertoon kan word gedurende die diens. + - - Web Download - Web Aflaai - - - Ui_AmendThemeDialog + + &Bible + &Bybel + + + + BiblesPlugin,BiblesTab - - Horizontal - Horisontaal - - - ImportWizardForm + + Bibles + Bybels + + + + BiblesPlugin.BiblesTab - - Open OSIS file - Waak OSIS lêer oop - - - Ui_AmendThemeDialog + + Verse Display + Vers Vertoning + - - Circular - Sirkelvormig + + Only show new chapter numbers + Vertoon net nuwe hoofstuk nommers + - - pt - pt - - - Ui_MainWindow + + Layout style: + + - - &Add Tool... - Voeg Gereedsk&ap By - - - SongMaintenanceForm + + Display style: + + - - Delete Topic - Wis Onderwerp Uit - - - ServiceManager + + Bible theme: + + - - Move up - Beweeg Op - - - Ui_OpenLPImportDialog + + Verse Per Slide + + - - Lyrics - Lerieke - - - BiblesTab + + Verse Per Line + + - - No brackets - Geen hakkies - - - Ui_AlertEditDialog + + Continuous + + - - Maintain Alerts - Onderhou Waarskuwings - - - Ui_AmendThemeDialog + + No Brackets + + - - px - px - - - ServiceManager + + ( And ) + + - - Select a theme for the service - Selekteer 'n tema vir die diens - - - ThemesTab + + { And } + + - - Themes - Temas - - - ServiceManager + + [ And ] + + - - Move to bottom - Verskuif na onder - - - Ui_PluginViewDialog + + Note: +Changes do not affect verses already in the service. + + - - Status: - Status: - - - Ui_EditSongDialog + + Display dual Bible verses + + + + + BiblesPlugin.ImportWizardForm - - CCLI Number: - CCLI Nommer: - - - ImportWizardForm + + Bible Import Wizard + Bybel Invoer Gids + - - This Bible already exists! Please import a different Bible or first delete the existing one. - Dié Bybel bestaan reeds! Voer asseblief 'n ander Bybel in of wis die eerste een uit. - - - Ui_MainWindow + + Welcome to the Bible Import Wizard + Welkom by die Bybel Invoer Gids + - - &Translate - Ver&taal - - - AlertEditForm + + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + Hierdie gids sal u help om Bybels van 'n verskeidenheid vormate in te voer. Kliek die volgende knoppie hieronder om die proses te begin en 'n formaat te kies om in te voer. + - - Please Save or Clear seletced item - Stoor of wis asseblief die geselekteerde item uit - - - BiblesTab + + Select Import Source + Selekteer Invoer Bron + - - Bibles - Bybels - - - Ui_SongMaintenanceDialog + + Select the import format, and where to import from. + Selekteer die invoer formaat en van waar af om in te voer. + - - Authors - Skrywers - - - SongUsageDetailForm + + Format: + Formaat: + - - Output File Location - Uitvoer Lêer Ligging - - - BiblesTab + + OSIS + OSIS + - - { and } - { en } - - + + CSV + KGW + + + + OpenSong + OpenSong + + + + Web Download + Web Aflaai + + + + File location: + + + + + Books location: + + + + + Verse location: + + + + + Bible filename: + + + + + Location: + Ligging: + + + + Crosswalk + Cosswalk + + + + BibleGateway + BibleGateway + + + + Bible: + Bybel: + + + + Download Options + Aflaai Opsies + + + + Server: + Bediener: + + + + Username: + Gebruikersnaam: + + + + Password: + Wagwoord: + + + + Proxy Server (Optional) + Tussenganger Bediener (Opsioneel) + + + + License Details + Lisensie Besonderhede + + + + Set up the Bible's license details. + Stel hierdie Bybel se lisensie besonderhede op. + + + + Version name: + + + + + Copyright: + Kopiereg: + + + + Permission: + Toestemming: + + + + Importing + Invoer + + + + Please wait while your Bible is imported. + Wag asseblief terwyl u Bybel ingevoer word. + + + + Ready. + Gereed. + + + + Invalid Bible Location + Ongeldige Bybel Ligging + + + + You need to specify a file to import your Bible from. + + + + + Invalid Books File + Ongeldige Boeke Lêer + + + + You need to specify a file with books of the Bible to use in the import. + + + + + Invalid Verse File + Ongeldige Vers Lêer + + + + You need to specify a file of Bible verses to import. + + + + + Invalid OpenSong Bible + Ongeldige OpenSong Bybel + + + + You need to specify an OpenSong Bible file to import. + + + + + Empty Version Name + Weergawe Naam is Leeg + + + + You need to specify a version name for your Bible. + + + + + Empty Copyright + Leë Kopiereg + + + + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + Stel Kopiereg op vir die spesifieke Bybel! Bybels in die Publieke Omgewing moet so gemerk word. + + + + Bible Exists + Bybel Bestaan + + + + This Bible already exists! Please import a different Bible or first delete the existing one. + Dié Bybel bestaan reeds! Voer asseblief 'n ander Bybel in of wis die eerste een uit. + + + + Open OSIS File + + + + + Open Books CSV File + + + + + Open Verses CSV File + + + + + Open OpenSong Bible + Maak OpenSong Bybel Oop + + + + Starting import... + Invoer begin... + + + + Finished import. + Invoer voltooi. + + + + Your Bible import failed. + U Bybel invoer het misluk. + + + + BiblesPlugin.MediaItem + + + Bible + Bybel + + + + Quick + Vinnig + + + + Advanced + Gevorderd + + + + Version: + Weergawe: + + + + Dual: + Dubbel: + + + + Search type: + + + + + Find: + Vind: + + + + Search + Soek + + + + Results: + &Resultate: + + + + Book: + Boek: + + + + Chapter: + Hoofstuk: + + + + Verse: + Vers: + + + + From: + Vanaf: + + + + To: + Aan: + + + + Verse Search + Soek Vers + + + + Text Search + Teks Soektog + + + + Clear + + + + + Keep + Behou + + + + No Book Found + Geeb Boek Gevind nie + + + + No matching book could be found in this Bible. + Geen bypassende boek kon in dié Bybel gevind word nie. + + + + etc + + + + + Bible not fully loaded. + + + + + BiblesPlugin.Opensong + + + Importing + Invoer + + + + CustomPlugin + + + <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> + + + + + CustomPlugin.CustomTab + + + Custom + + + + + Custom Display + Aangepasde Vertoning + + + + Display footer + + + + + CustomPlugin.EditCustomForm + + + Edit Custom Slides + Redigeer Aangepaste Skyfies + + + + Move slide up once position. + + + + + Move slide down one position. + + + + + &Title: + + + + + Add New + Voeg Nuwe By + + + + Add a new slide at bottom. + + + + + Edit + Redigeer + + + + Edit the selected slide. + + + + + Edit All + Redigeer Alles + + + + Edit all the slides at once. + + + + + Save + Stoor + + + + Save the slide currently being edited. + + + + + Delete + + + + + Delete the selected slide. + + + + + Clear + + + + + Clear edit area + Maak skoon die redigeer area + + + + Split Slide + + + + + Split a slide into two by inserting a slide splitter. + + + + + The&me: + + + + + &Credits: + + + + + Save && Preview + Stoor && Voorskou + + + + Error + Fout + + + + You need to type in a title. + + + + + You need to add at least one slide + + + + + You have one or more unsaved slides, please either save your slide(s) or clear your changes. + + + + + CustomPlugin.MediaItem + + + Custom + + + + + You haven't selected an item to edit. + + + + + You haven't selected an item to delete. + + + + + DisplayTab + + + Displays + + + + + Default Settings + + + + + X: + + + + + Y: + + + + + Height: + Hoogte: + + + + Width: + Wydte: + + + + Custom Settings + + + + + Width + + + + + Override display settings + + + + GeneralTab - - Prompt to save Service before starting New - Bevestig om Diens te stoor voor 'n Nuwe een begin word - - - ImportWizardForm - - - Starting import... - Invoer begin... - - - BiblesTab - - - Note: -Changes don't affect verses already in the service - Nota: -Verstellings affekteer nie verse wat alreeds in die diens is nie - - - Ui_EditVerseDialog - - - Intro - Inleiding - - - ServiceManager - - - Move up order - Verskuif orde op - - - PresentationTab - - - available - beskikbaar - - - ThemeManager - - - default - verstek - - - SongMaintenanceForm - - - Delete Author - Wis Skrywer Uit - - - Ui_AmendThemeDialog - - - Display Location - Vertoon Ligging - - - Ui_PluginViewDialog - - - Version: - Weergawe: - - - Ui_AlertEditDialog - - - Add - Byvoeg - - - GeneralTab - - - General - Algemeen - - - Ui_AmendThemeDialog - - - Y Position: - Y Posisie: - - - ServiceManager - - - Move down order - Verskuif orde af - - - BiblesTab - - - verse per slide - verse per skyfie - - - Ui_AmendThemeDialog - - - Show Shadow: - Vertoon Skaduwee: - - - AlertsTab - - - Preview - Voorskou - - - alertsPlugin - - - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - <b>Waarskuwing Inprop</b><br/>Hierdie inprop beheer die vertoning van waarskuwings op die aanbieding skerm - - - GeneralTab - - - Show the splash screen - Wys die spatsel skerm - - - Ui_MainWindow - - - New Service - Nuwe Diens - - - SlideController - - - Move to first - Verskuif na eerste - - - Ui_MainWindow - - - &Online Help - &Aanlyn Hulp - - - SlideController - - - Blank Screen - Blanko Skerm - - - Ui_MainWindow - - - Save Service - Stoor Diens - - - Save &As... - Stoor &As... - - - Toggle the visibility of the Media Manager - Wissel sigbaarheid van die Media Bestuurder - - - BibleMediaItem - - - No Book Found - Geeb Boek Gevind nie - - - Ui_EditSongDialog - - - Add - Byvoeg - - - alertsPlugin - - - &Alert - W&aarskuwing - - - BibleMediaItem - - - Advanced - Gevorderd - - - ImageMediaItem - - - Image(s) - Beeld(e) - - - Ui_MainWindow - - - F11 - F11 - - - F10 - F10 - - - F12 - F12 - - - Ui_BibleImportWizard - - - Select the import format, and where to import from. - Selekteer die invoer formaat en van waar af om in te voer. - - - Ui_MainWindow - - - Alt+F7 - Alt+F7 - - - Add an application to the list of tools - Voeg 'n program by die lys van gereedskap - - - MediaPlugin - - - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - <b>Media Inprop</b><br/>Hierdie inprop verskaf die vermoë om audio of video media te speel - - - BiblesTab - - - Bible Theme: - Bybel Tema: - - - SongsPlugin - - - Export songs in openlp.org 1.0 format - Voer liedere uit in openlp.org 1.0 formaat - - - Ui_MainWindow - - - Theme Manager - Tema Bestuurder - - - AlertsTab - - - Alerts - Waarskuwings - - - Ui_customEditDialog - - - Move slide down 1 - Verskuif skyfie 1 af - - - Ui_AmendThemeDialog - - - Font: - Skrif: - - - ServiceManager - - - Load an existing service - Laai 'n bestaande diens - - - Ui_MainWindow - - - Toggle the visibility of the Theme Manager - Wissel die sigbaarheid van die Tema Bestuurder - - - PresentationTab - - - Presentations - Aanbiedinge - - - SplashScreen - - - Starting - Begin - - - ImageTab - - - Slide Loop Delay: - Skyfie Lus Vertraging: - - - SlideController - - - Verse - Vers - - - AlertsTab - - - Alert timeout: - Waarskuwing tydgrens: - - - Ui_MainWindow - - - &Preview Pane - Voorskou &Paneel - - - MediaManagerItem - - - Add a new - Voeg 'n nuwe by - - - ThemeManager - - - Select Theme Import File - Kies Tema Invoer Lêer - - - New Theme - Nuwe Tema - - - MediaMediaItem - - - Media - Media - - - Ui_AmendThemeDialog - - - Preview - Voorskou - - - Outline Size: - Buitelyn Grootte: - - - Ui_OpenSongExportDialog - - - Progress: - Vordering: - - - AmendThemeForm - - - Second Color: - Tweede Kleur: - - - Ui_EditSongDialog - - - Theme, Copyright Info && Comments - Tema, Kopiereg Informasie && Kommentaar - - - Ui_AboutDialog - - - Credits - Krediete - - - BibleMediaItem - - - To: - Aan: - - - Ui_EditSongDialog - - - Song Book - Lied Boek - - - alertsPlugin - - - F7 - F7 - - - Ui_OpenLPExportDialog - - - Author - Skrywer - - - Ui_AmendThemeDialog - - - Wrap Indentation - Omvou Inkeping - - - ThemeManager - - - Import a theme - Voer 'n tema in - - - PresentationPlugin - - - <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - <b>Aanbieding Inprop</b><br/>Verskaf die vermoë om aanbiedings te vertoon deur 'n verskeidenheid programme. Die keuse van beskikbare aanbieding programme is aan die gebruiker beskikbaar in 'n laat val boks. - - - ImageMediaItem - - - Image - Beeld - - - BibleMediaItem - - - Clear - Maak skoon - - - Ui_MainWindow - - - Save Service As - Stoor Diens As - - - Ui_AlertDialog - - - Cancel - Kanselleer - - - Ui_OpenLPImportDialog - - - Import - Invoer - - - Ui_EditVerseDialog - - - Chorus - Koor - - - Ui_EditSongDialog - - - Edit All - Redigeer Alles - - - AuthorsForm - - - You need to type in the last name of the author. - U moet ten minste die skrywer se naam invoer. - - - SongsTab - - - Songs Mode - Liedere Modus - - - Ui_AmendThemeDialog - - - Left - Links - - - RemotesPlugin - - - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer.<br>The Primary use for this would be to send alerts from a creche - <b>Afstandbeheer Inprop</b><br/>Hierdie inprop verskaf die vermoë om boodskappe na 'n lewendige weergawe van openlp op 'n ander rekenaar te stuur.<br/>Die Hoof gebruik vir hierdie sal wees om waarskuwings vanaf 'n moederskamer te stuur. - - - ImageTab - - - Images - Beelde - - - BibleMediaItem - - - Verse: - Vers: - - - Ui_OpenLPExportDialog - - - openlp.org Song Exporter - openlp.org Lied Uitvoerder - - - Song Export List - Lied Uitvoer Lys - - - ThemeManager - - - Export theme - Tema Uitvoer - - - Ui_SongMaintenanceDialog - - - Delete - Wis Uit - - - Ui_AmendThemeDialog - - - Theme Name: - Tema Naam: - - - Ui_AboutDialog - - - About OpenLP - Aangaande OpenLP - - - Ui_MainWindow - - - Toggle the visibility of the Service Manager - Wissel die sigbaarheid van die Diens Bestuurder - - - PresentationMediaItem - - - A presentation with that filename already exists. - 'n Voorstelling met daardie lêernaam bestaan reeds. - - - AlertsTab - - - openlp.org - openlp.org - - - ImportWizardForm - - - Invalid Books File - Ongeldige Boeke Lêer - - - Ui_OpenLPImportDialog - - - Song Title - Lied Titel - - - MediaManagerItem - - - &Show Live - &Vertoon Regstreeks - - - AlertsTab - - - Keep History: - Behou Geskiedenis: - - - Ui_AmendThemeDialog - - - Image: - Beeld: - - - Ui_customEditDialog - - - Set Theme for Slides - Verstel Tema vir Skyfies - - - Ui_MainWindow - - - More information about OpenLP - Meer inligting aangaande OpenLP - - - AlertsTab - - - Background Color: - Agtergrond Kleur: - - - SongMaintenanceForm - - - No topic selected! - Geen onderwerp geselekteer nie! - - - Ui_MainWindow - - - &Media Manager - &Media Bestuurder - - - &Tools - &Gereedskap - - - AmendThemeForm - - - Background Color: - Agtergrond Kleur: - - - Ui_EditSongDialog - - - A&dd to Song - Voeg by Lie&d - - - Title: - Titel: - - - GeneralTab - - - Screen - Skerm - - - AlertsTab - - - s - s - - + + CCLI Details + CCLI Inligting + + + + primary + primêre + + + + Show blank screen warning + Vertoon leë skerm waarskuwing + + + + Application Startup + Program Aanskakel + + + + Select monitor for output display: + Selekteer monitor vir uitgaande vertoning: + + + + Application Settings + Program Verstellings + + + + SongSelect Username: + SongSelect Gebruikers naam: + + + + CCLI Number: + CCLI Nommer: + + + + Automatically open the last service + Maak vanself die laaste diens oop + + + + Preview Next Song from Service Manager + Sien Voorskou van Volgende Lied vanaf Diens Bestuurder + + + + Prompt to save Service before starting New + Bevestig om Diens te stoor voor 'n Nuwe een begin word + + + + General + Algemeen + + + + Show the splash screen + Wys die spatsel skerm + + + + Screen + Skerm + + + + Monitors + Monitors + + + + SongSelect Password: + SongSelect Wagwoord: + + + + Display if a single screen + + + + ImagePlugin - - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any somgs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> - <b>Beeld Inprop</b><br/>Laat toe om enige tipe beeld te vertoon. As 'n aantal beelde geselekteer word en op die regstreekse beheerder aangebied word, is dit moontlik om hullle in 'n tydsame lus te plaas.<br/><br/>As die <i>Vervang agtergrond</i> opsie gekies is by die inprop en 'n beeld word geselekteer, sal enige lied wat vertoon word die voorkeur beeld gebruik in plaas van die lied se verstek agtergrond vanaf die tema.<br/> - - - Ui_AlertEditDialog + + <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> + + + + + ImagePlugin.ImageTab - - Clear - Maak skoon - - - Ui_BibleImportWizard + + Images + Beelde + - - Please wait while your Bible is imported. - Wag asseblief terwyl u Bybel ingevoer word. - - - MediaManagerItem + + Image Settings + Beeld Verstellings + - - No items selected... - Geet items geselekteer nie... - - - Ui_OpenLPImportDialog + + Slide Loop Delay: + Skyfie Lus Vertraging: + - - Select All - Selekteer Alles - - - Ui_AmendThemeDialog + + sec + sec + + + + ImagePlugin.MediaItem - - Font Main - Skrif Hoof - - - ImageMediaItem + + Image + Beeld + - - Images (*.jpg *jpeg *.gif *.png *.bmp) - Beelde (*.jpg *jpeg *.gif *.png *.bmp) - - - Ui_OpenLPImportDialog + + Select Image(s) + Selekteer beeld(e) + - - Title - Titel - - - Ui_OpenSongExportDialog + + All Files + + - - Select OpenSong song folder: - Selekteer OpenSong lied gids: - - - Ui_MainWindow + + Replace Live Background + + - - Toggle Media Manager - Wissel Media Bestuurder - - - SongUsagePlugin + + You must select an item to delete. + + - - &Song Usage - &Lied Gebruik - - - GeneralTab + + Image(s) + Beeld(e) + - - Monitors - Monitors - - - EditCustomForm + + You must select an item to process. + + + + + LanguageManager - - You need to enter a slide - U moet 'n skyfie nommer invoer - - - Ui_SongMaintenanceDialog + + Language + + - - Topics - Onderwerpe - - - ImportWizardForm - - - You need to specify a file to import your Bible from! - U moet 'n lêer spesifiseer om u Bybel vanaf in te voer! - - - Ui_EditVerseDialog - - - Verse Type - Vers Tipe - - - OpenSongBible - - - Importing - Invoer - - - Ui_EditSongDialog - - - Comments - Kommentaar - - - AlertsTab - - - Bottom - Onder - - - Ui_MainWindow - - - Create a new Service - Skep 'n nuwe Diens - - - AlertsTab - - - Top - Bo - - - ServiceManager - - - &Preview Verse - Vers V&oorsig - - - Ui_PluginViewDialog - - - TextLabel - TeksEtiket - - - AlertsTab - - - Font Size: - Skrif Grootte: - - - Ui_PluginViewDialog - - - About: - Aangaande: - - - Inactive - Onaktief - - - Ui_OpenSongExportDialog - - - Ready to export - Gereed om uit te voer - - - Export - Voer uit - - - Ui_PluginViewDialog - - - Plugin List - Inprop Lys - - - Ui_AmendThemeDialog - - - Transition Active: - Verandering Aktief: - - - Ui_BibleImportWizard - - - Proxy Server (Optional) - Tussenganger Bediener (Opsioneel) - - - Ui_EditSongDialog - - - &Manage Authors, Topics, Books - &Bestuur Skrywers, Onderwerpe en Boeke - - - Ui_SongUsageDetailDialog - - - Audit Detail Extraction - Oudit Besonderhede Inwinning - - - Ui_OpenLPExportDialog - - - Ready to export - Gereed vir Uitvoer - - - EditCustomForm - - - Save && Preview - Stoor && Voorskou - - - Ui_OpenLPExportDialog - - - Select All - Selekteer Alles - - - Ui_SongUsageDetailDialog - - - to - aan - - - Ui_AmendThemeDialog - - - Size: - Grootte: - - + + After restart new Language settings will be used. + + + + MainWindow - - OpenLP Main Display Blanked - OpenLP Hoof Vertoning Blanko - - - Ui_OpenLPImportDialog + + The Main Display has been blanked out + Die Hoof Skerm is blanko + - - Remove Selected - Verwyder Geselekteerde - - - Ui_EditSongDialog + + OpenLP Version Updated + OpenLP Weergawe is Opdateer + - - Delete - Wis uit - - - ImportWizardForm + + Save Changes to Service? + Stoor Veranderinge na die Diens? + - - You need to specify an OpenSong Bible file to import! - U moet 'n OpenSong Bybel lêer spesifiseer om in te voer! - - - PresentationMediaItem + + OpenLP Main Display Blanked + OpenLP Hoof Vertoning Blanko + - - File exists - Lêer bestaan - - - Ui_OpenLPExportDialog + + OpenLP 2.0 + OpenLP 2.0 + - - Title - Titel - - - Ui_OpenSongImportDialog + + English + Engels + - - Ready to import - Gereed vir invoer - - - SlideController + + &File + &Lêer + - - Stop continuous loop - Stop deurlopende lus + + &Import + &Invoer + - - s - s - - - SongMediaItem + + &Export + &Uitvoer + - - Song Maintenance - Lied Onderhoud - - - Ui_customEditDialog + + &View + &Bekyk + - - Edit - Redigeer - - - Ui_AmendThemeDialog + + M&ode + M&odus + - - Gradient : - Gradiënt : - - - ImportWizardForm + + &Tools + &Gereedskap + - - Invalid Verse File - Ongeldige Vers Lêer - - - EditSongForm + + &Settings + Ver&stellings + - - Error - Fout - - - Ui_customEditDialog + + &Language + Taa&l + - - Add New - Voeg Nuwe By - - - Ui_AuthorsDialog + + &Help + &Hulp + - - Display name: - Vertoon naam: - - - SongMaintenanceForm + + Media Manager + Media Bestuurder + - - Are you sure you want to delete the selected topic? - Is u seker u wil die geselekteerde onderwerp uitwis? - - - Ui_AmendThemeDialog + + Service Manager + Diens Bestuurder + - - Bold/Italics - Bold/Italics - - - Ui_SongMaintenanceDialog + + Theme Manager + Tema Bestuurder + - - Song Maintenance - Lied Onderhoud - - - Ui_BibleImportWizard + + &New + &Nuwe + - - Welcome to the Bible Import Wizard - Welkom by die Bybel Invoer Gids - - - SongsTab + + New Service + Nuwe Diens + - - Songs - Liedere - - - Ui_BibleImportWizard + + Create a new service. + + - - Password: - Wagwoord: - - - Ui_MainWindow + + Ctrl+N + Ctrl+N + - - &Theme Manager - &Tema Bestuurder - - + + &Open + Maak &Oop + + + + Open Service + Maak Diens Oop + + + + Open an existing service. + + + + + Ctrl+O + Ctrl+O + + + + &Save + &Stoor + + + + Save Service + Stoor Diens + + + + Save the current service to disk. + + + + + Ctrl+S + Ctrl+S + + + + Save &As... + Stoor &As... + + + + Save Service As + Stoor Diens As + + + + Save the current service under a new name. + + + + + Ctrl+Shift+S + + + + + E&xit + &Uitgang + + + + Quit OpenLP + Sluit OpenLP Af + + + + Alt+F4 + Alt+F4 + + + + &Theme + &Tema + + + + &Configure OpenLP... + + + + + &Media Manager + &Media Bestuurder + + + + Toggle Media Manager + Wissel Media Bestuurder + + + + Toggle the visibility of the media manager. + + + + + F8 + F8 + + + + &Theme Manager + &Tema Bestuurder + + + + Toggle Theme Manager + Wissel Tema Bestuurder + + + + Toggle the visibility of the theme manager. + + + + + F10 + F10 + + + + &Service Manager + &Diens Bestuurder + + + + Toggle Service Manager + Wissel Diens Bestuurder + + + + Toggle the visibility of the service manager. + + + + + F9 + F9 + + + + &Preview Panel + &Voorskou Paneel + + + + Toggle Preview Panel + Wissel Voorskou Paneel + + + + Toggle the visibility of the preview panel. + + + + + F11 + F11 + + + + &Live Panel + + + + + Toggle Live Panel + + + + + Toggle the visibility of the live panel. + + + + + F12 + F12 + + + + &Plugin List + In&prop Lys + + + + List the Plugins + Lys die Inproppe + + + + Alt+F7 + Alt+F7 + + + + &User Guide + &Gebruikers Gids + + + + &About + &Aangaande + + + + More information about OpenLP + Meer inligting aangaande OpenLP + + + + Ctrl+F1 + Ctrl+F1 + + + + &Online Help + &Aanlyn Hulp + + + + &Web Site + &Web Tuiste + + + + &Auto Detect + + + + + Use the system language, if available. + + + + + Set the interface language to %s + + + + + Add &Tool... + + + + + Add an application to the list of tools. + + + + + &Default + + + + + Set the view mode back to the default. + + + + + &Setup + + + + + Set the view mode to Setup. + + + + + &Live + &Regstreeks + + + + Set the view mode to Live. + + + + + Version %s of OpenLP is now available for download (you are currently running version %s). + +You can download the latest version from http://openlp.org + + + + + Your service has changed. Do you want to save those changes? + + + + + Default Theme: %s + + + + MediaManagerItem - - Preview the selected item - Voorskou die geselekteerde item - - - Ui_BibleImportWizard + + You must select one or more items + P moet meer as een item selekteer + - - Version Name: - Weergawe Naam: - - - Ui_AboutDialog + + Delete the selected item + Wis geselekteerde item uit + - - About - Aangaande - - - MediaMediaItem + + &Add to Service + &Voeg by Diens + - - Select Media - Selekteer Media - - - Ui_AmendThemeDialog + + Send the selected item live + Stuur die geselekteerde item na regstreekse vertoning + - - Horizontal Align: - Horisontale Belyning: - - + + Add the selected item(s) to the service + Voeg die geselekteerde item(s) by die diens + + + + &Show Live + &Vertoon Regstreeks + + + + Preview the selected item + Voorskou die geselekteerde item + + + + No Items Selected + + + + + Import %s + + + + + Import a %s + + + + + Load %s + + + + + Load a new %s + + + + + New %s + + + + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Preview %s + + + + + Add %s to Service + + + + + &Edit %s + + + + + &Delete %s + + + + + &Preview %s + + + + + &Add to selected Service Item + + + + + You must select one or more items to preview. + + + + + You must select one or more items to send live. + + + + + You must select one or more items. + + + + + No items selected + + + + + No Service Item Selected + + + + + You must select an existing service item to add to. + + + + + Invalid Service Item + + + + + You must select a %s service item. + + + + + MediaPlugin + + + <b>Media Plugin</b><br>This plugin allows the playing of audio and video media + <b>Media Inprop</b><br/>Hierdie inprop verskaf die vermoë om audio of video media te speel + + + + MediaPlugin.MediaItem + + + Media + Media + + + + Select Media + Selekteer Media + + + + Replace Live Background + + + + + You must select an item to delete. + + + + + OpenLP + + + Image Files + + + + + PluginForm + + + Plugin List + Inprop Lys + + + + Plugin Details + Inprop Besonderhede + + + + Version: + Weergawe: + + + + TextLabel + TeksEtiket + + + + About: + Aangaande: + + + + Status: + Status: + + + + Active + Aktief + + + + Inactive + Onaktief + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + + + + + PresentationPlugin + + + <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + + + + PresentationPlugin.MediaItem + + + Presentation + Aanbieding + + + + Select Presentation(s) + Selekteer Aanbieding(e) + + + + Automatic + + + + + Present using: + Bied aan met: + + + + File exists + Lêer bestaan + + + + A presentation with that filename already exists. + 'n Voorstelling met daardie lêernaam bestaan reeds. + + + + You must select an item to delete. + + + + + PresentationPlugin.PresentationTab + + + Presentations + Aanbiedinge + + + + Available Controllers + Beskikbare Beheerders + + + + available + beskikbaar + + + + RemotePlugin + + + <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer via a web browser or other app<br>The Primary use for this would be to send alerts from a creche + + + + + RemotePlugin.RemoteTab + + + Remotes + Afstandbehere + + + + Remotes Receiver Port + Afstandbeheer Ontvanger Poort + + + + ServiceItemEditForm + + + Service Item Maintenance + + + + + Up + + + + + Delete + + + + + Down + + + + ServiceManager - - &Edit Item - R&edigeer Item - - - Ui_AmendThemeDialog + + Save Changes to Service? + Stoor Veranderinge aan Diens? + - - Background Type: - Agtergrond Tipe: - - - Ui_MainWindow + + Open Service + Maak Diens Oop + - - &Save - &Stoor + + Move to top + Skuif na bo + - - OpenLP 2.0 - OpenLP 2.0 - - + + 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 + + + Settings + Verstellings + + + + 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 + + + &Delete recorded data + &Wis opname data uit + + + + Start/Stop live song usage recording + Begin/Stop regstreekse lied-gebruik opname + + + + <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service + <b>SongUsage Inprop</b><br>Hierdie inprop stoor die gebruik van liedere en wanneer dit gebruik was gedurende 'n regstreekse diens. + + + + Delete song usage to specified date + Wis lied-gebruik uit tot gespesifiseerde datum + + + + Generate report on Song Usage + Genereer verslag van Lied Gebruik + + + + Song Usage Status + Lied Gebruik Status + + + + &Extract recorded data + V&erkry aangetekende data + + + + &Song Usage + &Lied Gebruik + + + + SongsPlugin + + + &Song + &Lied + + + + Import songs using the import wizard. + + + + + Songs of Fellowship (temp menu item) + + + + + Import songs from the VOLS1_2.RTF, sof3words.rtf and sof4words.rtf supplied with the music books + + + + + Generic Document/Presentation Import (temp menu item) + + + + + Import songs from Word/Writer/Powerpoint/Impress + + + + + Open Songs of Fellowship file + + + + + Import Error + + + + + Error importing Songs of Fellowship file. +OpenOffice.org must be installed and you must be using an unedited copy of the RTF included with the Songs of Fellowship Music Editions + + + + + Open documents or presentations + + + + + <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + + + + + SongsPlugin.AuditDeleteDialog + + + Song Usage Delete + + + + + SongsPlugin.AuditDetailDialog + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + aan + + + + Report Location + Rapporteer Ligging + + + + SongsPlugin.AuthorsForm + + + Author Maintenance + Skrywer Onderhoud + + + + Display name: + Vertoon naam: + + + + First name: + Voornaam: + + + + Last name: + Van: + + + + Error + Fout + + + + You need to type in the first name of the author. + U moet die naam van die skrywer invul. + + + + You need to type in the last name of the author. + U moet ten minste die skrywer se naam invoer. + + + + You haven't set a display name for the author, would you like me to combine the first and last names for you? + U het nie 'n vertoon naam vir die skrywer gegee nie, moet ek die voornaam en van kombineer? + + + + SongsPlugin.EditSongForm + + + Song Editor + Lied Redigeerder + + + + &Title: + + + + + Alt&ernate Title: + + + + + &Lyrics: + + + + + &Verse Order: + + + + + &Add + + + + + &Edit + R&edigeer + + + + Ed&it All + + + + + &Delete + + + + + Title && Lyrics + Titel && Lirieke + + + + Authors + Skrywers + + + + &Add to Song + &Voeg by Lied + + + + &Remove + &Verwyder + + + + &Manage Authors, Topics, Books + &Bestuur Skrywers, Onderwerpe en Boeke + + + + Topic + Onderwerp + + + + A&dd to Song + Voeg by Lie&d + + + + R&emove + V&erwyder + + + + Song Book + Lied Boek + + + + Authors, Topics && Book + Skrywer, Onderwerpe && Boek + + + + Theme + Tema + + + + New &Theme + + + + + Copyright Information + Kopiereg Informasie + + + + © + + + + + CCLI Number: + CCLI Nommer: + + + + Comments + Kommentaar + + + + Theme, Copyright Info && Comments + Tema, Kopiereg Informasie && Kommentaar + + + + Save && Preview + Stoor && Voorskou + + + + Add Author + + + + + This author does not exist, do you want to add them? + + + + + 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? + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + Redigeer Vers + + + + &Verse type: + + + + + &Insert + + + + + SongsPlugin.ImportWizardForm + + + No OpenLyrics Files Selected + + + + + You need to add at least one OpenLyrics song file to import from. + + + + + No OpenSong Files Selected + + + + + You need to add at least one OpenSong song file to import from. + + + + + No CCLI Files Selected + + + + + You need to add at least one CCLI file to import from. + + + + + No CSV File Selected + + + + + You need to specify a CSV file to import from. + + + + + Starting import... + Invoer begin... + + + + Song Import Wizard + + + + + Welcome to the Song Import Wizard + + + + + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. + + + + + Select Import Source + Selekteer Invoer Bron + + + + Select the import format, and where to import from. + Selekteer die invoer formaat en van waar af om in te voer. + + + + Format: + Formaat: + + + + OpenLyrics + + + + + OpenSong + OpenSong + + + + CCLI + + + + + CSV + KGW + + + + Add Files... + + + + + Remove File(s) + + + + + Filename: + + + + + Browse... + + + + + Importing + Invoer + + + + Please wait while your songs are imported. + + + + + Ready. + Gereed. + + + + %p% + + + + + SongsPlugin.MediaItem + + + Song + Lied + + + + Song Maintenance + Lied Onderhoud + + + + Maintain the lists of authors, topics and books + Handhaaf die lys van skrywers, onderwerpe en boeke + + + + Search: + Soek: + + + + Type: + Tipe: + + + + Clear + + + + + Search + Soek + + + + Titles + Titels + + + + Lyrics + + + + + Authors + Skrywers + + + + %s (%s) + + + + + You must select an item to edit. + + + + + You must select an item to delete. + + + + + Delete song? + + + + + Delete %d songs? + + + + + Delete Confirmation + + + + + CCLI Licence: + CCLI Lisensie: + + + + SongsPlugin.SongBookForm + + + Edit Book + Redigeer Boek + + + + &Name: + + + + + &Publisher: + + + + + Error + Fout + + + + You need to type in a name for the book. + + + + + SongsPlugin.SongImport + + + copyright + + + + + © + + + + + SongsPlugin.SongMaintenanceForm + + + Song Maintenance + Lied Onderhoud + + + + Authors + Skrywers + + + + Topics + Onderwerpe + + + + Books/Hymnals + Boeke/Liedboeke + + + + &Add + + + + + &Edit + R&edigeer + + + + &Delete + + + + + Error + Fout + + + + Couldn't add your author. + + + + + Couldn't add your topic. + + + + + Couldn't add your book. + + + + + Couldn't save your author. + + + + + Couldn't save your topic. + + + + + Couldn't save your book. + + + + + 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 can't 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 can't 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 can't 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 + Uitvoer Lêer Ligging + + + + SongsPlugin.SongsTab + + + Songs + Liedere + + + + Songs Mode + Liedere Modus + + + + Enable search as you type + + + + + Display Verses on Live Tool bar + + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + Onderwerp Onderhoud + + + + Topic name: + Onderwerp naam: + + + + Error + Fout + + + + You need to type in a topic name! + U moet 'n onderwerp naam invoer! + + + + Splashscreen + + + Starting + Begin + + + + Splash Screen + Spatsel Skerm + + + ThemeManager - - A theme with this name already exists, would you like to overwrite it? - 'n Tema met hierdie naam bestaan alreeds, wil u daaroor skryf? - - - PresentationMediaItem + + Import Theme + Tema Invoer + - - Select Presentation(s) - Selekteer Aanbieding(e) - - - ThemeManager + + Delete Theme + Wis Tema Uit + - - Export a theme - Voer 'n tema uit - - - AmendThemeForm + + Error + Fout + - - Open file - Maak lêer oop - - - Ui_TopicsDialog + + Edit Theme + Wysig Tema + - - Topic Maintenance - Onderwerp Onderhoud - - - Ui_customEditDialog + + Export Theme + Voer Tema Uit + - - Clear edit area - Maak skoon die redigeer area - - - Ui_AmendThemeDialog + + Theme Exists + Tema Bestaan + - - Show Outline: - Vertoon Buitelyn: - - - SongBookForm + + Save Theme - (%s) + Stoor Tema - (%s) + - - You need to type in a book name! - U moet 'n boek naam invoer! - - - ImportWizardForm + + Select Theme Import File + Kies Tema Invoer Lêer + - - Open OpenSong Bible - Maak OpenSong Bybel Oop - - - Ui_MainWindow + + New Theme + Nuwe Tema + - - Look && &Feel - Vertoning && &Gevoel - - - Ui_BibleImportWizard + + Create a new theme. + + - - Ready. - Gereed. - - - ThemeManager + + Edit a theme. + + - - You have not selected a theme! - U het nie 'n tema geselekteer nie! - - - Ui_SongMaintenanceDialog + + Delete a theme. + + - - Books/Hymnals - Boeke/Liedboeke - - - Ui_AboutDialog + + Import a theme. + + - - Contribute - Dra By - - - Ui_AmendThemeDialog + + Export a theme. + + - - Gradient - Gradiënt - - - Ui_BibleImportWizard + + &Edit Theme + + - - Books Location: - Boeke Ligging: - - - Ui_OpenSongExportDialog + + &Delete Theme + + - - Full Song List - Volle Lied Lys - - - GeneralTab + + Set As &Global Default + + - - SongSelect Password: - SongSelect Wagwoord: - - -Delete Selected Song Usage Events?Couldn't save your book.AutomaticMove to &bottomThis author can't be deleted, they are currently assigned to at least one song.Couldn't save your topic.Move to &topYou need to specify a file to import your Bible from.Song Usage ExtractionAllow the background of live slide to be overriddenYou are unable to delete the default theme.Couldn't save your author.<b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br>&Delete From ServiceImages (*.jpg *.jpeg *.gif *.png *.bmp);; All files (*)You need to specify a version name for your Bible.Couldn't add your topic.You need to specify a file of Bible verses to import.File is not a valid theme.This book can't be deleted, it is currently assigned to at least one song.<b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br>Please save or clear selected itemOpenLP Service Files (*.osz)Couldn't add your author.This topic can't be deleted, it is currently assigned to at least one song.Move &downAre you sure you want to delete selected Song Usage data?Add &Tool...Song Usage DeleteMove &upYou need to specify a file with books of the Bible to use in the import.<b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box.Couldn't add your book.You have not selected a theme.Select Date RangeYou need to specify an OpenSong Bible file to import. + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + You are unable to delete the default theme. + + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Theme (*.*) + + + + + File is not a valid theme. +The content encoding is not UTF-8. + + + + + File is not a valid theme. + + + + + A theme with this name already exists. Would you like to overwrite it? + + + + + ThemesTab + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Gebruik die tema van elke lied in die lied-databasis. As 'n lied nie 'n geassosieërde tema het nie, gebruik die diens se tema. As die diens nie 'n tema het nie, gebruik dan die globale tema. + + + + Use the global theme, overriding any themes associated with either the service or the songs. + Gebruik die globale tema om enige temas wat met die diens of liedere geassosieer is te vervang. + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + Gebruik die tema van die diens en verplaas enige van die individuele liedere se temas. As die diens nie 'n tema het nie, gebruik dan die globale tema. + + + + Themes + Temas + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + &Service Level + + + + + &Global Level + + + + + VerseType + + + Verse + Vers + + + + Chorus + Koor + + + + Bridge + Brug + + + + Pre-Chorus + Voor-Refrein + + + + Intro + Inleiding + + + + Ending + Slot + + + + Other + Ander + + + diff --git a/resources/i18n/openlp_de.ts b/resources/i18n/openlp_de.ts index 922c3b27b..72b560a2b 100644 --- a/resources/i18n/openlp_de.ts +++ b/resources/i18n/openlp_de.ts @@ -1,4259 +1,3775 @@ - - - - BibleMediaItem - - - Quick - Schnellsuche - - - Ui_customEditDialog - - - Delete selected slide - Lösche ausgewählte Folie - - - BiblesTab - - - ( and ) - ( und ) - - - RemoteTab - - - Remotes - Fernprojektion - - - Ui_EditSongDialog - - - &Remove - Entfe&rnen - - - Ui_AmendThemeDialog - - - Shadow Size: - Schattengröße: - - - Ui_OpenSongExportDialog - - - Close - Schließen - - - ThemeManager - - - Import Theme - Design importieren - - - Ui_AmendThemeDialog - - - Slide Transition - FolienübergangBei mir im OOo3 ist es Folienübergang (vgl. Impress) ->(wie in OpenOffice 3) - - - SongMaintenanceForm - - - Are you sure you want to delete the selected book? - Sind Sie sicher, dass das markierte Buch wirklich gelöscht werden soll? - - - ThemesTab - - - Theme level - Design-EbeneJetzt einheitlich (Gotttesdienst-Ebene, Lied-Ebene, Global-Ebene) - - - BibleMediaItem - - - Bible - Bibel - - - ServiceManager - - - Save Changes to Service? - Änderungen am Ablauf speichern? - - - SongUsagePlugin - - - &Delete recorded data - Aufgezeichnete &Daten löschen - - - Ui_OpenLPExportDialog - - - Song Title - Liedtitel - - - Ui_customEditDialog - - - Edit selected slide - Markierte Folie bearbeiten - - - SongMediaItem - - - CCLI Licence: - CCLI-Lizenz: - - - Ui_SongUsageDeleteDialog - - - Audit Delete - Statistik löschenAudit = Aufzeichnung, welche Lieder während eines Gottesdienstes benutzt wurden, keine Prüfung! - - - Ui_BibleImportWizard - - - Bible Import Wizard - Bibel Import Assistent - - - Ui_customEditDialog - - - Edit All - Alle bearbeiten - - - Ui_ServiceNoteEdit - - - Service Item Notes - Elementnotiz - - - SongMaintenanceForm - - - Couldn't save your author! - Der Autor konnte nicht gespeichert werden! - - - Ui_customEditDialog - - - Clear - Löschen - - - ThemesTab - - - Global theme - Standarddesign - - - SongUsagePlugin - - - Start/Stop live song usage recording - Liederstatistik unterbrechen/weiterführen - - - MainWindow - - - The Main Display has been blanked out - Die Projektion ist momentan nicht aktiv - - - Ui_OpenSongExportDialog - - - Lyrics - Liedtext - - - Ui_AlertDialog - - - Display - Anzeige - - - Ui_customEditDialog - - - Delete - Löschen - - - Ui_EditVerseDialog - - - Verse - Vers - - - SongMaintenanceForm - - - This author can't be deleted, they are currently assigned to at least one song! - Dieser Autor kann nicht gelöscht werden, da er mindestens einem Lied zugeordnet ist! - - - ThemeManager - - - Create a new theme - Erstelle neues DesignAuf Design geeinigt - - - Ui_MainWindow - - - Open an existing service - Ablauf öffnen - - - SlideController - - - Move to previous - Vorherige Folie anzeigen - - - SongsPlugin - - - &Song - &Lied - - - Ui_PluginViewDialog - - - Plugin Details - Plugin-Details - - - AlertsTab - - - pt - pt - - - Edit History: - Verlauf bearbeiten: - - - Ui_MainWindow - - - &File - &Datei - - - SongMaintenanceForm - - - Couldn't add your book! - Das Buch konnte nicht hinzugefügt werden! - - - BiblesTab - - - verse per line - Ein Vers pro Zeile - - - Ui_customEditDialog - - - Theme: - Design: - - - SongMaintenanceForm - - - Error - Fehler - - - Ui_BibleImportWizard - - - Bible: - Bibel: - - - ImportWizardForm - - - You need to specify a file with books of the Bible to use in the import! - Sie müssen eine Datei mit der Liste der Bibelbücher auswählen! - - - ThemeManager - - - Delete Theme - Design löschen - - - SplashScreen - - - Splash Screen - Startbildschirm - - - SongMediaItem - - - Song - Lied - - - SongUsageDeleteForm - - - Delete Selected Audit Events? - Sollen die ausgewählten Einträge aus der Statistik entfernt werden? - - - Ui_OpenSongExportDialog - - - Song Title - Liedtitel - - - Ui_AmendThemeDialog - - - Bottom - Unten - - - Ui_MainWindow - - - List the Plugins - Plugins auflisten - - - SongMaintenanceForm - - - No author selected! - Sie haben keinen Autor ausgewählt! - - - SongUsagePlugin - - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - <b>SongUsage-Plugin</b><br>Dieses Plugin zeichnet auf, welche Lieder Sie wie oft und wann benutzt haben und erstellt daraus eine Statistik - - - Ui_customEditDialog - - - Move slide Up 1 - Folie nach oben verschieben - - - SongsPlugin - - - OpenSong - OpenSong - - - AlertsManager - - - Alert message created and delayed - Hinweis erzeugt und verzögertMit "Hinweis" übersetzt: a) es geht nur eine Übersetzung (Hinweis oder Alarm). b) in 1.2 heißt es auch "Hinweis" - - - Ui_EditSongDialog - - - Alternative Title: - Alternativer Titel: - - - ServiceManager - - - Open Service - Öffnen Ablauf - - - BiblesTab - - - Display Style: - Anzeige: - - - Ui_AmendThemeDialog - - - Image - Bild - - - EditSongForm - - - You need to enter a song title. - Sie müssen einen Liedtitel angeben! - - - ThemeManager - - - Error - Fehler - - - ImportWizardForm - - - Invalid Bible Location - Ungültige Bibelstelle - - - ThemesTab - - - Global level - Global-EbeneÜberseztung darf nicht zu lang sein. Jetzt einheitlich (Gotttesdienst-Ebene, Lied-Ebene, Global-Ebene) - - - ThemeManager - - - Make Global - Als Standarddesign festlegen - - - Ui_MainWindow - - - &Service Manager - Ablauf&sverwaltung - - - Ui_OpenLPImportDialog - - - Author - Autor - - - Ui_AmendThemeDialog - - - Height: - Höhe: - - - ThemeManager - - - Delete a theme - Design löschenDa engl. design = dt. Design und engl. theme = dt. Theme bin ich der Meinung es muss mit Theme übersetzt werden! - - - Ui_BibleImportWizard - - - Crosswalk - Crosswalk - - - SongBookForm - - - Error - Fehler - - - Ui_AuthorsDialog - - - Last name: - Nachname: - - - Ui_customEditDialog - - - Title: - Titel: - - - ImportWizardForm - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - Sie müssen das Copyright der Bibel angeben. Bei Bibeln, die keinem Copyright mehr unterlegen, geben Sie bitte "Public Domain" ein. - - - SongMediaItem - - - Maintain the lists of authors, topics and books - Autoren, Designs und Bücher verwalten - - - Ui_AlertEditDialog - - - Save - Speichern - - - EditCustomForm - - - You have unsaved data - Nicht alle Änderungen wurden gespeichert - - - Ui_AmendThemeDialog - - - Outline - RandHier ist definitiv ein Rand gemeint. - - - BibleMediaItem - - - Text Search - Textsuche - - - Ui_BibleImportWizard - - - CSV - CSV - - - SongUsagePlugin - - - Delete song usage to specified date - Liedstatistik bis zu einem bestimmten Termin löschen - - - Ui_SongUsageDetailDialog - - - Report Location - Speicherort für die Statistiken - - - Ui_BibleImportWizard - - - OpenSong - OpenSong - - - Ui_MainWindow - - - Open Service - Öffne Ablauf - - - BibleMediaItem - - - Find: - Suchen: - - - ImageMediaItem - - - Select Image(s) - Bild(er) auswählen - - - BibleMediaItem - - - Search Type: - Suchmodus: - - - Ui_MainWindow - - - Media Manager - Medienmanager - - - Alt+F4 - Alt+F4 - - - MediaManagerItem - - - &Preview - &Vorschau - - - GeneralTab - - - CCLI Details - CCLI-Details - - - BibleMediaItem - - - Bible not fully loaded - Die Bibel wurde nicht vollständig geladen - - - Ui_MainWindow - - - Toggle the visibility of the Preview Panel - Vorschaubereich ein/ausblenden - - - ImportWizardForm - - - Bible Exists - Diese Bibelübersetzung ist bereits vorhanden - - - Ui_MainWindow - - - &User Guide - Ben&utzerhandbuch - - - SongUsageDeleteForm - - - Are you sure you want to delete selected Audit Data? - Sind Sie sicher, dass Sie die markierten Einträge aus der Statistik löschen wollen? - - - Ui_MainWindow - - - Set the interface language to English - Oberfläche auf Englisch anzeigen - - - Ui_AmendThemeDialog - - - Main Font - Hauptschriftart - - - ImportWizardForm - - - Empty Copyright - Das Copyright wurde nicht angegeben - - - CustomPlugin - - - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> - <b>Sonderfolien-Plugin</b><br>Diese Plugin ermöglicht es Folien anzulegen, die wie die Liedfolien dargestellt werden, bietet aber mehr Freiheit.<br> - - - AuthorsForm - - - You need to type in the first name of the author. - Sie müssen den Vornamen des Autors angeben. - - - SongsTab - - - Display Verses on Live Tool bar: - Verse in der Liveansicht anzeigen: - - - ServiceManager - - - Move to top - Nach oben verschieben - - - ImageMediaItem - - - Override background - Hintergrund ignorieren - - - Ui_SongMaintenanceDialog - - - Edit - Bearbeiten - - - Ui_OpenSongExportDialog - - - Select All - Alle markieren - - - ThemesTab - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - Das im jeweiligen Lied eingestellte Design verwenden. Wenn für ein Lied kein Design festgelegt ist, wird das Ablaufdesign verwendet. Wenn dort auch kein Design festgelegt wurde, wird das Standarddesign benutzt. - - - PresentationMediaItem - - - Presentation - Präsentation - - - Ui_AmendThemeDialog - - - Solid Color - Füllfarbe - - - CustomTab - - - Custom - Sonderfolien - - - Ui_OpenLPImportDialog - - - Ready to import - Bereit für den Importvorgang - - - MainWindow - - - OpenLP version %s has been updated to version %s - -You can obtain the latest version from http://openlp.org - OpenLP Version %s in der Version %s vor. - -Sie können die aktuelle Version von http://de.openlp.org herunterladen"OpenLP Version %s liegt in der Version %s vor.\n -\n -Sie können die aktuelle Version von http://de.openlp.org herunterladen" ist vielleicht das gemeint? - - - Ui_BibleImportWizard - - - File Location: - Speicherort: - - - SlideController - - - Go to Verse - Zum Vers springen - - - Ui_MainWindow - - - &Import - &Importieren - - - Quit OpenLP - OpenLP beenden - - - Ui_BibleImportWizard - - - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - Dieser Assistent hilft ihnen beim Importieren von Bibeln aus verschiedenen Formaten. Klicken Sie auf Weiter, um den Assistenten zu starten. - - - SongMaintenanceForm - - - Couldn't add your topic! - Das Thema konnte nicht hinzugefügt werden! - - - ImportWizardForm - - - Empty Version Name - Leerer Übersetzungsname - - - Ui_MainWindow - - - &Preview Panel - &Vorschaubereich - - - SlideController - - - Start continuous loop - Endlosschleife startenAlso mir gefällt ja nur "Schleife starten" besser (vgl. Stop continuous loop) - - - ServiceManager - - - Move down - Nach unten verschieben - - - GeneralTab - - - primary - Hauptbildschirm - - - Ui_EditSongDialog - - - Add a Theme - Design hinzufügen - - - Ui_MainWindow - - - &New - &Neu - - - Ui_customEditDialog - - - Credits: - Fußzeile: - - - SlideController - - - Live - Live - - - GeneralTab - - - Show blank screen warning - Warnung anzeigen, wenn die Projektion deaktiviert wurde - - - BiblesTab - - - continuous - unendlich - - - Ui_EditVerseDialog - - - Number - Nummer - - - GeneralTab - - - Application Startup - Programmstart - - - Ui_AmendThemeDialog - - - Use Default Location: - Vorgabewerte verwenden: - - - Ui_OpenSongImportDialog - - - Import - Importieren - - - Ui_AmendThemeDialog - - - Other Options - Weitere Optionen - - - Ui_EditSongDialog - - - Verse Order: - Reihenfolge: - - - Ui_SongUsageDetailDialog - - - ASelect Date Range - Zeitfenster auswählen - - - Ui_MainWindow - - - Default Theme: - Standarddesign: - - - Toggle Preview Panel - Vorschaubereich ein/ausblenden - - - SongMediaItem - - - Lyrics - Liedtext - - - Ui_OpenLPImportDialog - - - Progress: - Fortschritt: - - - Ui_AmendThemeDialog - - - Shadow - Schatten - - - GeneralTab - - - Select monitor for output display: - Projektionsbildschirm: - - - Ui_MainWindow - - - &Settings - Ein&stellungen - - - Ui_AmendThemeDialog - - - Italics - Kursiv - - - ServiceManager - - - Create a new service - Erstelle neuen Ablauf - - - Ui_AmendThemeDialog - - - Background: - Hintergrund: - - - Ui_OpenLPImportDialog - - - openlp.org Song Importer - openlp.org Lieder importieren - - - Ui_BibleImportWizard - - - Copyright: - Copyright: - - - ThemesTab - - - Service level - Gottesdienst-EbeneÜberseztung darf nicht zu lang sein. Jetzt einheitlich (Gotttesdienst-Ebene, Lied-Ebene, Global-Ebene) - - - BiblesTab - - - [ and ] - [ und ] - - - Ui_BibleImportWizard - - - Verse Location: - Versangabe: - - - MediaManagerItem - - - You must select one or more items - Sie müssen mindestens ein Element markieren - - - GeneralTab - - - Application Settings - Anwendungseinstellungen - - - ServiceManager - - - Save this service - Ablauf speichern - - - ImportWizardForm - - - Open Books CSV file - CSV-Datei mit Bücherliste - - - GeneralTab - - - SongSelect Username: - SongSelect-Benutzername: - - - Ui_AmendThemeDialog - - - X Position: - X-Position: - - - BibleMediaItem - - - No matching book could be found in this Bible. - Das Buch wurde in dieser Bibelausgabe nicht gefunden. - - - Ui_BibleImportWizard - - - Server: - Server: - - - SongMaintenanceForm - - - Couldn't save your book! - Das Buch konnte nicht gespeichert werden! - - - Ui_EditVerseDialog - - - Ending - Coda (Schluss) - - - CustomTab - - - Display Footer: - Infobereich anzeigen: - - - ImportWizardForm - - - Invalid OpenSong Bible - Ungültige OpenSong-Bibel - - - GeneralTab - - - CCLI Number: - CCLI-Nummer: - - - Ui_AmendThemeDialog - - - Center - Mitte - - - ServiceManager - - - Theme: - Design: - - - Ui_MainWindow - - - &Live - &Live - - - Ui_AmendThemeDialog - - - <Color2> - <Farbe 2> - - - Ui_MainWindow - - - English - Englisch - - - ImageMediaItem - - - You must select one or more items - Sie müssen mindestens ein Element markieren - - - Ui_AuthorsDialog - - - First name: - Vorname: - - - Ui_OpenLPExportDialog - - - Select openlp.org export filename: - Dateiname für den openlp.org Export auswählen: - - - Ui_BibleImportWizard - - - Permission: - Berechtigung: - - - Ui_OpenSongImportDialog - - - Close - Schließen - - - Ui_AmendThemeDialog - - - Opaque - Fest - - - SongMaintenanceForm - - - This book can't be deleted, it is currently assigned to at least one song! - Dieses Buch kann nicht gelöscht werden, da es mindestens einem Lied zugeordnet ist! - - - ImportWizardForm - - - Your Bible import failed. - Der Bibelimportvorgang ist fehlgeschlagen. - - - SlideController - - - Start playing media - Abspielen - - - SongMediaItem - - - Type: - Art: - - - Ui_AboutDialog - - - Close - Schließen - - - TopicsForm - - - You need to type in a topic name! - Sie müssen dem Thema einen Namen geben! - - - Ui_OpenSongExportDialog - - - Song Export List - Lieder exportieren - - - BibleMediaItem - - - Dual: - Parallel: - - - ImageTab - - - sec - sek - - - ServiceManager - - - Delete From Service - Aus dem Ablauf entfernen - - - GeneralTab - - - Automatically open the last service - Zuletzt benutzten Ablauf beim Start laden - - - Ui_OpenLPImportDialog - - - Song Import List - Lieder importieren - - - Ui_OpenSongExportDialog - - - Author - Autor - - - Ui_AmendThemeDialog - - - Outline Color: - Randfarbe:Hier ist der Rang gemeint... und Kontur passt m. E. nicht so gut. Sry... wenn ihr nicht zustimmt bitte melden - - - Ui_BibleImportWizard - - - Select Import Source - Importquelle auswählen - - - Ui_MainWindow - - - F9 - F9 - - - F8 - F8 - - - ServiceManager - - - &Change Item Theme - &Design des Elements ändern - - - Ui_OpenSongImportDialog - - - OpenSong Folder: - OpenSong-Ordner: - - - Ui_OpenLPImportDialog - - - Import File Song List - Lieder importieren - - - Ui_customEditDialog - - - Edit Custom Slides - Sonderfolien bearbeiten - - - Ui_BibleImportWizard - - - Set up the Bible's license details. - Die Lizenzinformationen der Bibelübersetzung angeben. - - - Ui_AmendThemeDialog - - - Alignment - Ausrichtung - - - SongMaintenanceForm - - - Delete Book - Buch löschen - - - ThemeManager - - - Edit a theme - Design bearbeiten - - - Ui_BibleImportWizard - - - BibleGateway - BibleGateway - - - GeneralTab - - - Preview Next Song from Service Manager - Vorschau des nächsten Lieds - - - Ui_EditSongDialog - - - Title && Lyrics - Titel && Liedtext - - - SongMaintenanceForm - - - No book selected! - Kein Buch ausgewählt! - - - SlideController - - - Move to live - Verschieben zur Live Ansicht - - - Ui_EditVerseDialog - - - Other - Weitere - - - Ui_EditSongDialog - - - Theme - Design - - - ServiceManager - - - Save Service - Ablauf speichern - - - Ui_MainWindow - - - Save the current service to disk - Aktuellen Ablauf speichern - - - BibleMediaItem - - - Chapter: - Kapitel: - - - Search - Suche - - - PresentationTab - - - Available Controllers - Verfügbare Präsentationsprogramme: - - - ImportWizardForm - - - Open Verses CSV file - CSV-Datei mit dem Bibeltext öffnen - - - TopicsForm - - - Error - Fehler - - - RemoteTab - - - Remotes Receiver Port - Fernprojektionsport - - - Ui_MainWindow - - - &View - &Ansicht - - - Ui_AmendThemeDialog - - - Normal - Normal - - - Ui_OpenLPExportDialog - - - Close - Schließen - - - Ui_BibleImportWizard - - - Username: - Benutzername: - - - ThemeManager - - - Edit Theme - Design bearbeiten - - - SlideController - - - Preview - Vorschau - - - Ui_AlertDialog - - - Alert Message - Hinweis - - - ImportWizardForm - - - Finished import. - Importvorgang abgeschlossen. - - - You need to specify a file of Bible verses to import! - Sie müssen die Datei mit dem Bibeltext angeben! - - - AlertsTab - - - Location: - Speicherort: - - - Ui_EditSongDialog - - - Authors, Topics && Book - Autoren, Designs && Bücher - - - EditSongForm - - - You need to enter some verses. - Sie müssen etwas Liedtext angeben. - - - Ui_BibleImportWizard - - - Download Options - Download Optionen - - - BiblePlugin - - - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - <strong>Bibel-Plugin</strong><br />Mit diesem Plugin können Sie Bibeltexte aus verschiedenen Quellen während des Gottesdienstes anzeigen lassen. - - - Ui_EditSongDialog - - - Copyright Information - Copyright Angaben - - - Ui_MainWindow - - - &Export - &Exportieren - - - Ui_AmendThemeDialog - - - Bold - Fett - - - SongsPlugin - - - Export songs in OpenLP 2.0 format - Lieder als OpenLP 2.0 Datei exportieren - - - MediaManagerItem - - - Load a new - Hinzufügen - - - AlertEditForm - - - Missing data - Datei fehlt - - - SongsPlugin - - - <b>Song Plugin</b> <br>This plugin allows Songs to be managed and displayed.<br> - <b>Lieder-Plugin</b><br>Mit diesem Plugin können Sie Lieder verwalten und anzeigen.<br> - - - Ui_AmendThemeDialog - - - Footer Font - Schriftart der Fußzeile - - - EditSongForm - - - Invalid verse entry - vX - Ungültige Versangabe - vX - - - MediaManagerItem - - - Delete the selected item - Markiertes Element löschen - - - Ui_OpenLPExportDialog - - - Export - Exportieren - - - Ui_BibleImportWizard - - - Location: - Ort: - - - BibleMediaItem - - - Keep - Behalten - - - SongUsagePlugin - - - Generate report on Song Usage - Liederstatistik generieren - - - Ui_EditSongDialog - - - Topic - Thema - - - Ui_MainWindow - - - &Open - &Öffnen - - - AuthorsForm - - - You haven't set a display name for the author, would you like me to combine the first and last names for you? - Sie haben keinen Anzeigenamen für den Autor angegeben. Soll der Vor- mit dem Nachnamen kombiniert dafür verwendet werden? - - - AmendThemeForm - - - Slide Height is %s rows - Folienhöhe beträgt %s Zeilen - - - Ui_EditVerseDialog - - - Pre-Chorus - Vor-Refrain - - - Ui_EditSongDialog - - - Lyrics: - Liedtext: - - - Ui_AboutDialog - - - Project Lead - Raoul "superfly" Snyman - -Developers - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Testers - Wesley "wrst" Stout - Projektleiter - Raoul "superfly" Snyman - -Entwickler - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Tester - Wesley "wrst" Stout - - - SongMediaItem - - - Titles - Titel - - - Ui_OpenLPExportDialog - - - Lyrics - Liedtext - - - PresentationMediaItem - - - Present using: - Anzeigen mit: - - - SongMediaItem - - - Clear - AbbrechenIn V1 mit "Abbrechen" übersetzt - - - ServiceManager - - - &Live Verse - Vers &Live zeigenhm... - - - Ui_OpenSongImportDialog - - - Progress: - Fortschritt: - - - Ui_MainWindow - - - Toggle Theme Manager - Designverwaltung ein/ausblendenDesignverwaltung oder Designmanager? - - - Ui_AlertDialog - - - Alert Text: - Hinweistext: - - - Ui_EditSongDialog - - - Edit - Bearbeiten - - - AlertsTab - - - Font Color: - Schriftfarbe: - - - Ui_AmendThemeDialog - - - Theme Maintenance - Designverwaltung - - - CustomTab - - - Custom Display - Sonderfolie Anzeige - - - Ui_OpenSongExportDialog - - - Title - Titel - - - Ui_AmendThemeDialog - - - <Color1> - <Farbe 1> - - - Ui_EditSongDialog - - - Authors - Autoren - - - ThemeManager - - - Export Theme - Design exportieren - - - ServiceManager - - - (N) - (N) - - - Ui_SongBookDialog - - - Name: - Name: - - - Ui_AuthorsDialog - - - Author Maintenance - Autorenverwaltung - - - Ui_AmendThemeDialog - - - Font Footer - Schrift Fußzeile - - - BiblesTab - - - Verse Display - Bibelstellenanzeige - - - Ui_MainWindow - - - &Options - &Einstellungen - - - BibleMediaItem - - - Results: - Ergebnisse: - - - Ui_OpenLPExportDialog - - - Full Song List - Komplette Liedliste - - - SlideController - - - Move to last - Zur letzten Folie - - - Ui_OpenLPExportDialog - - - Progress: - Fortschritt: - - - Ui_SongMaintenanceDialog - - - Add - Hinzufügen - - - SongMaintenanceForm - - - Are you sure you want to delete the selected author? - Sind Sie sicher, dass Sie den ausgewählten Autor löschen wollen? - - - SongUsagePlugin - - - Song Usage Status - Liedstatistik - - - BibleMediaItem - - - Verse Search - Stelle suchen - - - Ui_SongBookDialog - - - Edit Book - Buch bearbeiten - - - EditSongForm - - - Save && Preview - Speichern && Vorschau - - - Ui_SongBookDialog - - - Publisher: - Verlag: - - - Ui_AmendThemeDialog - - - Font Weight: - Schriftschnitt:(aus OO3) - - - Ui_BibleImportWizard - - - Bible Filename: - Bibel Dateiname: - - - Ui_AmendThemeDialog - - - Transparent - Durchsichtig - - - SongMediaItem - - - Search - Suche - - - Ui_BibleImportWizard - - - Format: - Format: - - - Ui_AmendThemeDialog - - - Background - Hintergrund: - - - Ui_BibleImportWizard - - - Importing - Importiere - - - Ui_customEditDialog - - - Edit all slides - Alle bearbeiten - - - SongsTab - - - Enable search as you type: - Während dem Tippen suchen: - - - Ui_MainWindow - - - Ctrl+S - Strg+S - - - SongMediaItem - - - Authors - Autoren - - - Ui_PluginViewDialog - - - Active - Aktiv - - - SongMaintenanceForm - - - Couldn't save your topic! - Thema konnte nicht gespeichert werden! - - - Ui_MainWindow - - - Ctrl+O - Strg+O - - - Ctrl+N - Strg+N - - - SongMaintenanceForm - - - Couldn't add your author! - Der Autor wurde nicht gefunden! - - - Ui_AlertEditDialog - - - Edit - Bearbeiten - - - Ui_EditSongDialog - - - Song Editor - Lied bearbeiten - - - AlertsTab - - - Font - Schrift - - - SlideController - - - Edit and re-preview Song - Lied bearbeiten und wieder anzeigen - - - Delay between slides in seconds - Pause zwischen den Folien in Sekunden - - - MediaManagerItem - - - &Edit - &Bearbeiten - - - Ui_AmendThemeDialog - - - Vertical - Vertikal - - - Width: - Breite: - - - ThemeManager - - - You are unable to delete the default theme! - Sie können das Standarddesign nicht löschen! - - - ThemesTab - - - Use the global theme, overriding any themes associated with either the service or the songs. - Das Standarddesign immer verwenden, unabhängig vom Lieddesign oder Ablaufdesign - - - BibleMediaItem - - - Version: - Version: - - - Ui_AboutDialog - - - OpenLP <version> build <revision> - Open Source Lyrics Projection + + + + AboutForm + + + About OpenLP + Über OpenLP + + + + OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version> build <revision> - Open Source Liedprojekt + + + + + About + Über + + + + Project Lead + Raoul "superfly" Snyman -OpenLP ist eine kostenlose Präsentationssoftware für Kirchen, mit der Lieder, Bibeltexte, Videos, bilder und sogar Präsentationen (falls OpenOffice.org, PowerPoint oder PowerPoint Viewer installiert ist) für die man nur einen Computer und einen Beamer braucht. +Developers + Tim "TRB143" Bentley + Jonathan "gushie" Corwin + Michael "cocooncrash" Gorven + Scott "sguerrieri" Guerrieri + Raoul "superfly" Snyman + Martin "mijiti" Thompson + Jon "Meths" Tibble -Mehr Informationen über OpenLP: http://de.openlp.org/ +Contributors + Meinert "m2j" Jordan + Christian "crichter" Richter + Maikel Stuivenberg + Carsten "catini" Tingaard -OpenLP wird von Freiwilligen entwickelt und verwaltet. Wenn Sie christliche Software fördern wollen, freuen wir uns über Ihre Spende. - - - SongsPlugin +Testers + Philip "Phill" Ridout + Wesley "wrst" Stout (lead) + +Packagers + Thomas "tabthorpe" Abthorpe (FreeBSD) + Tim "TRB143" Bentley (Fedora) + Michael "cocooncrash" Gorven (Ubuntu) + Matthias "matthub" Hub (Mac OS X) + Raoul "superfly" Snyman (Windows) + + + - - OpenLP 2.0 - OpenLP 2.0 - - - ServiceManager + + Credits + Credits + - - New Service - Neuer Ablauf - - - Ui_TopicsDialog + + Copyright © 2004-2010 Raoul Snyman +Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard + +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. + + +GNU GENERAL PUBLIC LICENSE +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification follow. + +GNU GENERAL PUBLIC LICENSE +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: + +a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. + +b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. + +c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. + +3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: + +a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. + +This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version', you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. + +<one line to give the program's name and a brief idea of what it does.> +Copyright (C) <year> <name of author> + +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it starts in an interactive mode: + +Gnomovision version 69, Copyright (C) year name of author +Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type "show w". +This is free software, and you are welcome to redistribute it under certain conditions; type "show c" for details. + +The hypothetical commands "show w" and "show c" should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than "show w" and "show c"; they could even be mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: + +Yoyodyne, Inc., hereby disclaims all copyright interest in the program "Gnomovision" (which makes passes at compilers) written by James Hacker. + +<signature of Ty Coon>, 1 April 1989 +Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. + + - - Topic name: - Thema: - - - ThemeManager + + License + Lizenz + - - File is not a valid theme! - Diese Datei ist kein gültiges Design! - - - Ui_BibleImportWizard + + Contribute + Mitwirken + - - License Details - Lizenz-Details - - - Ui_AboutDialog + + Close + Schließen + - - License - Lizenz - - - Ui_EditSongDialog + + build %s + + + + + AlertsPlugin - - R&emove - &Entfernen - - - Ui_AmendThemeDialog + + &Alert + &Hinweis + - - Middle - Mittig - - - Ui_customEditDialog + + <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen + <b>Hinweis-Plugin</b><br>Dieses Plugin ermöglicht Hinweise auf dem Projektionsbildschirm anzuzeigen + - - Save - Speichern - - - AlertEditForm + + Show an alert message. + + + + + AlertsPlugin.AlertForm - - Item selected to Edit - Element zum bearbeiten ausgewählt - - - BibleMediaItem + + Alert Message + Hinweis + - - From: - Von: - - - Ui_AmendThemeDialog + + Alert &text: + + - - Shadow Color: - Schatten Farbe - - - ServiceManager + + &Parameter(s): + + - - &Notes - &Notizen - - - Ui_MainWindow + + &New + &Neu + - - E&xit - &Beenden - - - Ui_OpenLPImportDialog + + &Save + &Speichern + - - Close - Schließen - - - MainWindow + + &Delete + + - - OpenLP Version Updated - OpenLP-Version aktualisiert - - - Ui_customEditDialog + + Displ&ay + + - - Replace edited slide - Geänderte Folie ersetzen + + Display && Cl&ose + + - - Add new slide at bottom - Neue Folie am Ende - - - EditCustomForm + + &Close + + - - You need to enter a title - Sie müssen eine Titel eingeben - - - ThemeManager + + New Alert + + - - Theme Exists - Design existiertich weiß nicht, wo dieser Dialog auftaucht. Aber vielleicht kann hier auch "design existiert bereits" genommen werden?! - - - Ui_MainWindow + + You haven't specified any text for your alert. Please type in some text before clicking New. + + + + + AlertsPlugin.AlertsManager - - &Help - &Hilfe - - - Ui_EditVerseDialog + + Alert message created and displayed. + + + + + AlertsPlugin.AlertsTab - - Bridge - Bridge - - - Ui_OpenSongExportDialog + + Alerts + Hinweise + - - OpenSong Song Exporter - OpenSong Lied Export - - - Ui_AmendThemeDialog + + Font + Schrift + - - Vertical Align: - Vertikale Ausrichtung: - - - TestMediaManager + + Font Name: + Schriftart: + - - Item2 - Element2 + + Font Color: + Schriftfarbe: + - - Item1 - Element1 - - - Ui_AmendThemeDialog + + Background Color: + Hintergrundfarbe: + - - Top - Oben - - - BiblesTab + + Font Size: + Schriftgröße: + - - Display Dual Bible Verses - Anzeige von dualen Bibelversen - - - Ui_MainWindow + + pt + pt + - - Toggle Service Manager - Ablaufmanager ein/ausblendenAblaufverwaltung oder Ablaufmanager? - - - MediaManagerItem + + Alert timeout: + Anzeigedauer: + - - &Add to Service - &Zum Ablauf hinzufügen - - + + s + s + + + + Location: + + + + + Preview + Vorschau + + + + openlp.org + openlp.org + + + + Top + Oben + + + + Middle + Mittig + + + + Bottom + Unten + + + AmendThemeForm - - First Color: - Erste Farbe: - - - ThemesTab + + Theme Maintenance + Designverwaltung + - - Song level - Lied-EbeneJetzt einheitlich (Gotttesdienst-Ebene, Lied-Ebene, Global-Ebene) - - - alertsPlugin + + &Visibility: + + - - Show an alert message - Zeige einen Hinweis - - - Ui_MainWindow + + Opaque + Fest + - - Ctrl+F1 - Strg+F1 + + Transparent + Durchsichtig + - - Save the current service under a new name - Aktuellen Ablauf unter neuem Namen speichern - - - Ui_OpenLPExportDialog + + Type: + Art: + - - Remove Selected - Ausgewählten Entfernen - - - ThemeManager + + Solid Color + Füllfarbe + - - Delete theme - Design löschen - - - ImageTab + + Gradient + Farbverlauf + - - Image Settings - Bildeinstellungen - - - Ui_OpenSongImportDialog + + Image + Bild + - - OpenSong Song Importer - OpenSong Lied Importer - - - SongUsagePlugin + + Image: + Bild: + - - &Extract recorded data - &Entpacke aufgezeichnete Daten - - - AlertsTab + + Gradient: + + - - Font Name: - Schriftart: - - - Ui_MainWindow + + Horizontal + Horizontal + - - &Web Site - &Webseite - - - MediaManagerItem + + Vertical + Vertikal + - - Send the selected item live - Ausgewähltes Element Live anzeigen - - - Ui_MainWindow + + Circular + Radial + - - M&ode - M&odus + + &Background + + - - Translate the interface to your language - Übersetzen Sie die Oberfläche in Ihre Sprache + + Main Font + Hauptschriftart + - - Service Manager - Ablaufverwaltung - - - CustomMediaItem + + Font: + Schriftart: + - - Custom - Sonderfolien - - - ImageMediaItem + + Color: + + - - No items selected... - Kein Element ausgewählt... - - - Ui_BibleImportWizard + + Size: + Größe: + - - OSIS - OSIS - - - SongsPlugin + + pt + pt + - - openlp.org 1.0 - openlp.org 1.0 - - - Ui_MainWindow + + Wrap indentation: + + - - &Theme - &Design - - - Ui_EditVerseDialog + + Adjust line spacing: + + - - Edit Verse - Bearbeite Vers - - - Ui_MainWindow + + Normal + Normal + - - &Language - &Sprache - - - ServiceManager + + Bold + Fett + - - Move to end - Zum Ende schieben + + Italics + Kursiv + - - Your service is unsaved, do you want to save those changes before creating a new one ? - Ihr Abllauf ist nicht gespeichert, wollen Sie die Änderungen speichern, bevor Sie einen neuen erstellen? - - - Ui_OpenSongExportDialog + + Bold/Italics + Fett/Kursiv + - - Remove Selected - Ausgewählte entfernen - - - SongMediaItem + + Style: + + - - Search: - Suche: - - - MainWindow + + Display Location + Anzeige Ort + - - Save Changes to Service? - Änderungen am Ablauf speichern? + + X position: + + - - Your service has changed, do you want to save those changes? - Ihr Ablauf würde verändert, möchten Sie die Änderungen speichern? - - - EditSongForm + + Y position: + + - - Invalid verse entry - values must be Numeric, I,B,C,T,P,E,O - Ingültige Versangabe: Verse müssen numerisch sein, I,B,C,T,P,E,O - - - Ui_EditSongDialog + + Width: + Breite: + - - &Add to Song - Zum Lied &hinzufügen - - - Ui_MainWindow + + Height: + Höhe: + - - &About - &Über - - - BiblesTab + + px + px + - - Only show new chapter numbers - Zeige nur neue Kapitelnummern - - - ImportWizardForm + + &Main Font + + - - You need to specify a version name for your Bible! - Sie müssen den Namen der Bibelübersetzung angeben! - - - Ui_AlertEditDialog + + Footer Font + Schriftart der Fußzeile + - - Delete - Löschen - - - EditCustomForm + + &Footer Font + + - - Error - Fehler - - - ThemesTab + + Outline + Rand + - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - Nutze das dem Ablauf zugewiesene Design, das im Lied eingestellte Design wird ignoriert. Wenn dem Ablauf kein Design zugeordnet ist, dann wird das Standarddesign verwendet. - - - SongMaintenanceForm + + Outline size: + + - - This topic can't be deleted, it is currently assigned to at least one song! - Dieses Thema kann nicht gelöscht werden, da es momentan mindestens einem Lied zugeordnet ist! - - - AlertEditForm + + Outline color: + + - - Item selected to Add - Ausgewähltes Element hinzufügen - - - Ui_AmendThemeDialog + + Show outline: + + - - Right - Rechts - - - ThemeManager + + Shadow + Schatten + - - Save Theme - (%s) - Speichere Design - (%s) - - - ImageMediaItem + + Shadow size: + + - - Allow background of live slide to be overridden - Erlaubt den Hintergrund einer Live-Folie zu überschreiben - - - MediaManagerItem + + Shadow color: + + - - Add the selected item(s) to the service - Füge Element(e) zum Ablauf hinzu - - - AuthorsForm + + Show shadow: + + - - Error - Fehler - - - BibleMediaItem + + Alignment + Ausrichtung + - - Book: - Buch: - - - Ui_AmendThemeDialog + + Horizontal align: + + - - Font Color: - Schriftfarbe: - - - Ui_OpenLPImportDialog + + Left + Links + - - Select openlp.org songfile to import: - Openlp.org Lieddatei für den Import auswählen: - - - Ui_SettingsDialog + + Right + Rechts + - - Settings - Einstellungen - - - BiblesTab + + Center + Mitte + - - Layout Style: - Versdarstellung: - - - MediaManagerItem + + Vertical align: + + - - Edit the selected - Auswahl bearbeiten - - - SlideController + + Top + Oben + - - Move to next - Verschiebe zum Nächsten - - - Ui_MainWindow + + Middle + Mittig + - - &Plugin List - &Plugin-Liste - - + + Bottom + Unten + + + + Slide Transition + Folienübergang + + + + &Other Options + + + + + Preview + Vorschau + + + + All Files + + + + + Select Image + + + + + First color: + + + + + Second color: + + + + + Slide height is %s rows. + + + + + Theme &name: + + + + + Use default location + + + + + Transition active + + + + + BibleDB + + + Book not found + + + + BiblePlugin - - &Bible - &Bibel - - - Ui_BibleImportWizard + + <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. + <strong>Bibel-Plugin</strong><br />Mit diesem Plugin können Sie Bibeltexte aus verschiedenen Quellen während des Gottesdienstes anzeigen lassen. + - - Web Download - Internetdownload - - - Ui_AmendThemeDialog + + &Bible + &Bibel + + + + BiblesPlugin,BiblesTab - - Horizontal - Horizontal - - - ImportWizardForm + + Bibles + Bibeln + + + + BiblesPlugin.BiblesTab - - Open OSIS file - Öffne OSIS-Datei - - - Ui_AmendThemeDialog + + Verse Display + Bibelstellenanzeige + - - Circular - Radial + + Only show new chapter numbers + Zeige nur neue Kapitelnummern + - - pt - pt - - - Ui_MainWindow + + Layout style: + + - - &Add Tool... - &Werkzeug hinzufügen... - - - SongMaintenanceForm + + Display style: + + - - Delete Topic - Lösche Thema - - - ServiceManager + + Bible theme: + + - - Move up - Nach oben verschieben - - - Ui_OpenLPImportDialog + + Verse Per Slide + + - - Lyrics - Liedtext - - - BiblesTab + + Verse Per Line + + - - No brackets - Keine Klammern - - - Ui_AlertEditDialog + + Continuous + + - - Maintain Alerts - Hinweise verwaltenMit "Hinweis" übersetzt: a) es geht nur eine Übersetzung (Hinweis oder Alarm). b) in 1.2 heißt es auch "Hinweis" - - - Ui_AmendThemeDialog + + No Brackets + + - - px - px - - - ServiceManager + + ( And ) + + - - Select a theme for the service - Design für den Ablauf auswählen - - - ThemesTab + + { And } + + - - Themes - Designs - - - ServiceManager + + [ And ] + + - - Move to bottom - Nach ganz unten verschieben - - - Ui_PluginViewDialog + + Note: +Changes do not affect verses already in the service. + + - - Status: - Status: - - - Ui_EditSongDialog + + Display dual Bible verses + + + + + BiblesPlugin.ImportWizardForm - - CCLI Number: - CCLI-Nummer: - - - ImportWizardForm + + Bible Import Wizard + Bibel Import Assistent + - - This Bible already exists! Please import a different Bible or first delete the existing one. - Diese Bibel ist bereits vorhanden! Bitte importieren Sie eine andere Bibel oder löschen Sie die bereits vorhandene. - - - Ui_MainWindow + + Welcome to the Bible Import Wizard + Willkommen beim Bibel Import Assistenten + - - &Translate - &Übersetzte - - - AlertEditForm + + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + Dieser Assistent hilft ihnen beim Importieren von Bibeln aus verschiedenen Formaten. Klicken Sie auf Weiter, um den Assistenten zu starten. + - - Please Save or Clear seletced item - Bitte Ausgewähltes Element speichern oder aufräumen - - - BiblesTab + + Select Import Source + Importquelle auswählen + - - Bibles - Bibeln - - - Ui_SongMaintenanceDialog + + Select the import format, and where to import from. + Wähle das Import Format und woher der Import erfolgen soll. + - - Authors - Autoren - - - SongUsageDetailForm + + Format: + Format: + - - Output File Location - Ablageort für Aufnahme wählen - - - BiblesTab + + OSIS + OSIS + - - { and } - { und } - - + + CSV + CSV + + + + OpenSong + OpenSong + + + + Web Download + Internetdownload + + + + File location: + + + + + Books location: + + + + + Verse location: + + + + + Bible filename: + + + + + Location: + + + + + Crosswalk + Crosswalk + + + + BibleGateway + BibleGateway + + + + Bible: + Bibel: + + + + Download Options + Download Optionen + + + + Server: + Server: + + + + Username: + Benutzername: + + + + Password: + Passwort: + + + + Proxy Server (Optional) + Proxy-Server (optional) + + + + License Details + Lizenz-Details + + + + Set up the Bible's license details. + Die Lizenzinformationen der Bibelübersetzung angeben. + + + + Version name: + + + + + Copyright: + Copyright: + + + + Permission: + Berechtigung: + + + + Importing + + + + + Please wait while your Bible is imported. + Bitte warten Sie während Ihre Bibel importiert wird. + + + + Ready. + Fertig. + + + + Invalid Bible Location + Ungültige Bibelstelle + + + + You need to specify a file to import your Bible from. + + + + + Invalid Books File + Ungültige Bücherdatei + + + + You need to specify a file with books of the Bible to use in the import. + + + + + Invalid Verse File + Ungültige Liedtext Datei + + + + You need to specify a file of Bible verses to import. + + + + + Invalid OpenSong Bible + Ungültige OpenSong-Bibel + + + + You need to specify an OpenSong Bible file to import. + + + + + Empty Version Name + Leerer Übersetzungsname + + + + You need to specify a version name for your Bible. + + + + + Empty Copyright + Das Copyright wurde nicht angegeben + + + + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + Sie müssen das Copyright der Bibel angeben. Bei Bibeln, die keinem Copyright mehr unterlegen, geben Sie bitte "Public Domain" ein. + + + + Bible Exists + Diese Bibelübersetzung ist bereits vorhanden + + + + This Bible already exists! Please import a different Bible or first delete the existing one. + Diese Bibel ist bereits vorhanden! Bitte importieren Sie eine andere Bibel oder löschen Sie die bereits vorhandene. + + + + Open OSIS File + + + + + Open Books CSV File + + + + + Open Verses CSV File + + + + + Open OpenSong Bible + Öffne OpenSong-Bibel + + + + Starting import... + Starte import ... + + + + Finished import. + Importvorgang abgeschlossen. + + + + Your Bible import failed. + Der Bibelimportvorgang ist fehlgeschlagen. + + + + BiblesPlugin.MediaItem + + + Bible + Bibel + + + + Quick + Schnellsuche + + + + Advanced + Erweitert + + + + Version: + Version: + + + + Dual: + Parallel: + + + + Search type: + + + + + Find: + Suchen: + + + + Search + Suche + + + + Results: + Ergebnisse: + + + + Book: + Buch: + + + + Chapter: + Kapitel: + + + + Verse: + Vers: + + + + From: + Von: + + + + To: + Bis: + + + + Verse Search + Stelle suchen + + + + Text Search + Textsuche + + + + Clear + + + + + Keep + Behalten + + + + No Book Found + Kein Buch gefunden + + + + No matching book could be found in this Bible. + Das Buch wurde in dieser Bibelausgabe nicht gefunden. + + + + etc + + + + + Bible not fully loaded. + + + + + BiblesPlugin.Opensong + + + Importing + + + + + CustomPlugin + + + <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> + + + + + CustomPlugin.CustomTab + + + Custom + Sonderfolien + + + + Custom Display + Sonderfolie Anzeige + + + + Display footer + + + + + CustomPlugin.EditCustomForm + + + Edit Custom Slides + Sonderfolien bearbeiten + + + + Move slide up once position. + + + + + Move slide down one position. + + + + + &Title: + + + + + Add New + Neues anfügen + + + + Add a new slide at bottom. + + + + + Edit + Bearbeiten + + + + Edit the selected slide. + + + + + Edit All + + + + + Edit all the slides at once. + + + + + Save + Speichern + + + + Save the slide currently being edited. + + + + + Delete + Löschen + + + + Delete the selected slide. + + + + + Clear + + + + + Clear edit area + Aufräumen des Bearbeiten Bereiches + + + + Split Slide + + + + + Split a slide into two by inserting a slide splitter. + + + + + The&me: + + + + + &Credits: + + + + + Save && Preview + Speichern && Vorschau + + + + Error + Fehler + + + + You need to type in a title. + + + + + You need to add at least one slide + + + + + You have one or more unsaved slides, please either save your slide(s) or clear your changes. + + + + + CustomPlugin.MediaItem + + + Custom + Sonderfolien + + + + You haven't selected an item to edit. + + + + + You haven't selected an item to delete. + + + + + DisplayTab + + + Displays + + + + + Default Settings + + + + + X: + + + + + Y: + + + + + Height: + Höhe: + + + + Width: + Breite: + + + + Custom Settings + + + + + Width + + + + + Override display settings + + + + GeneralTab - - Prompt to save Service before starting New - Auffordern den Ablauf zu speichern, bevor ein neuer gestartet wird"Auffordern den Ablauf zu speichern, bevor ein neuer gestartet wird" ist zu lang. Mein Vorschlag gefällt mir leider auch nicht hundertprozentig. Andere Ideen? - - - ImportWizardForm - - - Starting import... - Starte import ... - - - BiblesTab - - - Note: -Changes don't affect verses already in the service - Notiz: -Änderungen werden nicht für bereits im Ablauf vorhandene Verse berücksichtigt. - - - Ui_EditVerseDialog - - - Intro - Intro - - - ServiceManager - - - Move up order - Verschiebe Reihenfolge nach oben - - - PresentationTab - - - available - verfügbar - - - ThemeManager - - - default - Standard - - - SongMaintenanceForm - - - Delete Author - Lösche Autor - - - Ui_AmendThemeDialog - - - Display Location - Anzeige Ort - - - Ui_PluginViewDialog - - - Version: - Version: - - - Ui_AlertEditDialog - - - Add - Füge hinzu ... - - - GeneralTab - - - General - Allgemein - - - Ui_AmendThemeDialog - - - Y Position: - Y-Position: - - - ServiceManager - - - Move down order - Verschiebe Reihenfolge nach unten - - - BiblesTab - - - verse per slide - Verszahl pro Folie - - - Ui_AmendThemeDialog - - - Show Shadow: - Schatten anzeigen - - - AlertsTab - - - Preview - Vorschau - - - alertsPlugin - - - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - <b>Hinweis-Plugin</b><br>Dieses Plugin ermöglicht Hinweise auf dem Projektionsbildschirm anzuzeigen - - - GeneralTab - - - Show the splash screen - Zeige den Startbildschirm - - - Ui_MainWindow - - - New Service - Neuer Ablauf - - - SlideController - - - Move to first - Ganz nach vorn verschieben - - - Ui_MainWindow - - - &Online Help - &Online Hilfe - - - SlideController - - - Blank Screen - Live Bild abschalten - - - Ui_MainWindow - - - Save Service - Ablauf speichern - - - Save &As... - Speichern &als... - - - Toggle the visibility of the Media Manager - Medien Verwaltung ein/ausschalten - - - BibleMediaItem - - - No Book Found - Kein Buch gefunden - - - Ui_EditSongDialog - - - Add - Hinzufügen - - - alertsPlugin - - - &Alert - &Hinweis - - - BibleMediaItem - - - Advanced - Erweitert - - - ImageMediaItem - - - Image(s) - Bild(er) - - - Ui_MainWindow - - - F11 - F11 - - - F10 - F10 - - - F12 - F12 - - - Ui_BibleImportWizard - - - Select the import format, and where to import from. - Wähle das Import Format und woher der Import erfolgen soll. - - - Ui_MainWindow - - - Alt+F7 - Alt+F7 - - - Add an application to the list of tools - Füge eine Anwendung zur Liste der Werkzeuge hinzu - - - MediaPlugin - - - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - <b>Medien Plugin</b><br>Dieses Plugin ermöglicht das Abspielen von Audio und Video Material - - - BiblesTab - - - Bible Theme: - Bibeldesign: - - - SongsPlugin - - - Export songs in openlp.org 1.0 format - Exportiere Lieder in das openlp.org 1.0 Format - - - Ui_MainWindow - - - Theme Manager - Designmanager - - - AlertsTab - - - Alerts - Hinweise - - - Ui_customEditDialog - - - Move slide down 1 - Folie um 1 nach unten verschieben - - - Ui_AmendThemeDialog - - - Font: - Schriftart: - - - ServiceManager - - - Load an existing service - Öffne Ablauf - - - Ui_MainWindow - - - Toggle the visibility of the Theme Manager - Design Manager ein/ausschalten - - - PresentationTab - - - Presentations - Präsentationen - - - SplashScreen - - - Starting - Starte ... - - - ImageTab - - - Slide Loop Delay: - Zeitverzögerung bis zur nächsten Folie: - - - SlideController - - - Verse - Vers - - - AlertsTab - - - Alert timeout: - Anzeigedauer:Frei übersetzt - - - Ui_MainWindow - - - &Preview Pane - &VorschaubereichHabe es mit "&Vorschaubreich" (und nicht Vorschau Fenster) übersetzt (vereinheitlicht) - - - MediaManagerItem - - - Add a new - Neues anfügen - - - ThemeManager - - - Select Theme Import File - Wähle Datei für Design Import - - - New Theme - Neues Design - - - MediaMediaItem - - - Media - Medien - - - Ui_AmendThemeDialog - - - Preview - Vorschau - - - Outline Size: - Randbreite:Habe ich mal von Randgröße zu Randbreite geändert. Ein Rand ist breit, aber nicht groß. - - - Ui_OpenSongExportDialog - - - Progress: - Fortschritt: - - - AmendThemeForm - - - Second Color: - Zweite Farbe: - - - Ui_EditSongDialog - - - Theme, Copyright Info && Comments - Design, Copyrightinformationen && Kommentare - - - Ui_AboutDialog - - - Credits - Credits - - - BibleMediaItem - - - To: - Bis: - - - Ui_EditSongDialog - - - Song Book - Liederbuch - - - alertsPlugin - - - F7 - F7 - - - Ui_OpenLPExportDialog - - - Author - Autor - - - Ui_AmendThemeDialog - - - Wrap Indentation - Einzug nach Zeilenumbruch:this option shifts the text after the 1st line to the right ->what exactly does this option do? - - - ThemeManager - - - Import a theme - Design importieren - - - PresentationPlugin - - - <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - <b>Präsentations-Plugin</b> <br>Ermöglicht es, Präsentationen vieler verschiedener Programme in OpenLP einzubinden. Die verfügbaren Programme sind in der Drop-Down-Liste zu finden. - - - ImageMediaItem - - - Image - Bild - - - BibleMediaItem - - - Clear - AbbrechenIn V1 mit "Abbrechen" übersetzt - - - Ui_MainWindow - - - Save Service As - Speicher Gottesdienst unter - - - Ui_AlertDialog - - - Cancel - Abbrechen - - - Ui_OpenLPImportDialog - - - Import - Importieren - - - Ui_EditVerseDialog - - - Chorus - Refrain - - - Ui_EditSongDialog - - - Edit All - Alles Bearbeiten - - - AuthorsForm - - - You need to type in the last name of the author. - Sie müssen den Nachnamen des Autors eingeben. - - - SongsTab - - - Songs Mode - Liedermodus - - - Ui_AmendThemeDialog - - - Left - Links - - - RemotesPlugin - - - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer.<br>The Primary use for this would be to send alerts from a creche - <b>Fernsteuerungs-Plugin</b><br>Dieses Plugin ermöglicht es Nachrichten zu einer laufenden OpenLP Anwendung auf einem anderen Computer zu senden.<br>Eine Anwendung kann kann z. B. das Senden von Hinweisen aus der Sonntagsschule sein. - - - ImageTab - - - Images - Bilder - - - BibleMediaItem - - - Verse: - Vers: - - - Ui_OpenLPExportDialog - - - openlp.org Song Exporter - openlp.org-Song-Exporter - - - Song Export List - Lied Export Liste - - - ThemeManager - - - Export theme - Design exportieren - - - Ui_SongMaintenanceDialog - - - Delete - Löschen - - - Ui_AmendThemeDialog - - - Theme Name: - Designname: - - - Ui_AboutDialog - - - About OpenLP - Über OpenLP - - - Ui_MainWindow - - - Toggle the visibility of the Service Manager - Ablaufverwaltung ein/ausblenden - - - PresentationMediaItem - - - A presentation with that filename already exists. - Eine Präsentation mit diesem Dateinamen existiert bereits.entweder "schon" oder "bereits" - - - AlertsTab - - - openlp.org - openlp.org - - - ImportWizardForm - - - Invalid Books File - Ungültige Bücherdatei - - - Ui_OpenLPImportDialog - - - Song Title - LiedtitelWird zusammen geschrieben - - - MediaManagerItem - - - &Show Live - &Zeige Live - - - AlertsTab - - - Keep History: - Verlauf erhalten: - - - Ui_AmendThemeDialog - - - Image: - Bild: - - - Ui_customEditDialog - - - Set Theme for Slides - Setze Design für Folien - - - Ui_MainWindow - - - More information about OpenLP - Mehr Informationen über OpenLP - - - AlertsTab - - - Background Color: - Hintergrundfarbe: - - - SongMaintenanceForm - - - No topic selected! - Kein Thema ausgewählt! - - - Ui_MainWindow - - - &Media Manager - &Medienmanager - - - &Tools - &Extras - - - AmendThemeForm - - - Background Color: - Hintergrundfarbe: - - - Ui_EditSongDialog - - - A&dd to Song - Zum Lied &hinzufügen - - - Title: - Titel: - - - GeneralTab - - - Screen - Bildschirm - - - AlertsTab - - - s - s - - + + CCLI Details + CCLI-Details + + + + primary + Hauptbildschirm + + + + Show blank screen warning + Warnung anzeigen, wenn die Projektion deaktiviert wurde + + + + Application Startup + Programmstart + + + + Select monitor for output display: + Projektionsbildschirm: + + + + Application Settings + Anwendungseinstellungen + + + + SongSelect Username: + SongSelect-Benutzername: + + + + CCLI Number: + CCLI-Nummer: + + + + Automatically open the last service + Zuletzt benutzten Ablauf beim Start laden + + + + Preview Next Song from Service Manager + Vorschau des nächsten Lieds + + + + Prompt to save Service before starting New + Auffordern den Ablauf zu speichern, bevor ein neuer gestartet wird + + + + General + Allgemein + + + + Show the splash screen + Zeige den Startbildschirm + + + + Screen + Bildschirm + + + + Monitors + Monitore + + + + SongSelect Password: + SongSelect-Passwort: + + + + Display if a single screen + + + + ImagePlugin - - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any somgs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> - <b>Bilder Plugin</b><br>Dieses Plugin ermöglicht die Anzeige von Bildern. Wenn mehrere Bilder gemeinsam ausgewählt und präsentiert werden, ist es möglich sie als Dia Show zu zeigen.<br><br>Wird die Option <i>Hintergrund ersetzen</i> ausgewählt, wird für alle Lieder das ausgewählte Bild als Hintergrund gewählt.<br> - - - Ui_AlertEditDialog + + <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> + + + + + ImagePlugin.ImageTab - - Clear - AbbrechenIn V1 mit "Abbrechen" übersetzt - - - Ui_BibleImportWizard + + Images + Bilder + - - Please wait while your Bible is imported. - Bitte warten Sie während Ihre Bibel importiert wird. - - - MediaManagerItem + + Image Settings + Bildeinstellungen + - - No items selected... - Kein Element ausgewählt... - - - Ui_OpenLPImportDialog + + Slide Loop Delay: + Zeitverzögerung bis zur nächsten Folie: + - - Select All - Alles auswählen - - - Ui_AmendThemeDialog + + sec + sek + + + + ImagePlugin.MediaItem - - Font Main - Hauptschriftart - - - ImageMediaItem + + Image + Bild + - - Images (*.jpg *jpeg *.gif *.png *.bmp) - Bilder (*.jpg *.jpeg *.gif *.png *.bmp) - - - Ui_OpenLPImportDialog + + Select Image(s) + Bild(er) auswählen + - - Title - Titel - - - Ui_OpenSongExportDialog + + All Files + + - - Select OpenSong song folder: - Wählen Sie einen OpenSong-Liederordner: - - - Ui_MainWindow + + Replace Live Background + + - - Toggle Media Manager - Medienmanager ein/ausblenden - - - SongUsagePlugin + + You must select an item to delete. + + - - &Song Usage - Lieder Statistik - - - GeneralTab + + Image(s) + Bild(er) + - - Monitors - Monitore - - - EditCustomForm + + You must select an item to process. + + + + + LanguageManager - - You need to enter a slide - Sie müssen eine Folie eingeben - - - Ui_SongMaintenanceDialog + + Language + + - - Topics - Themen - - - ImportWizardForm - - - You need to specify a file to import your Bible from! - Es muss eine Datei ausgewählt werden, von der die Bibel importiert werden soll! - - - Ui_EditVerseDialog - - - Verse Type - Vers Art - - - OpenSongBible - - - Importing - Importiere... - - - Ui_EditSongDialog - - - Comments - Kommentare - - - AlertsTab - - - Bottom - Unten - - - Ui_MainWindow - - - Create a new Service - Erstelle neuen Ablauf - - - AlertsTab - - - Top - Oben - - - ServiceManager - - - &Preview Verse - Vers in der &Vorschau zeigen - - - Ui_PluginViewDialog - - - TextLabel - Text Beschriftung - - - AlertsTab - - - Font Size: - Schriftgröße: - - - Ui_PluginViewDialog - - - About: - Über: - - - Inactive - Inaktiv - - - Ui_OpenSongExportDialog - - - Ready to export - Bereit zum Exportieren - - - Export - Exportieren - - - Ui_PluginViewDialog - - - Plugin List - Plugin-Liste - - - Ui_AmendThemeDialog - - - Transition Active: - Übergang aktivieren:bewusst so übersetzt (also nicht "Übergang aktiv") - - - Ui_BibleImportWizard - - - Proxy Server (Optional) - Proxy-Server (optional) - - - Ui_EditSongDialog - - - &Manage Authors, Topics, Books - Verwalte Autoren, Themen, Bücher - - - Ui_SongUsageDetailDialog - - - Audit Detail Extraction - - Muss nicht übersetzt werden! - - - Ui_OpenLPExportDialog - - - Ready to export - Bereit zum Exportieren - - - EditCustomForm - - - Save && Preview - Speichern && Vorschau - - - Ui_OpenLPExportDialog - - - Select All - Alle auswählen - - - Ui_SongUsageDetailDialog - - - to - zu - - - Ui_AmendThemeDialog - - - Size: - Größe: - - + + After restart new Language settings will be used. + + + + MainWindow - - OpenLP Main Display Blanked - Hauptbildschirm abgedunkelt - - - Ui_OpenLPImportDialog + + The Main Display has been blanked out + Die Projektion ist momentan nicht aktiv + - - Remove Selected - Ausgewählte Einträgel entfernen - - - Ui_EditSongDialog + + OpenLP Version Updated + OpenLP-Version aktualisiert + - - Delete - Löschen - - - ImportWizardForm + + Save Changes to Service? + Änderungen am Ablauf speichern? + - - You need to specify an OpenSong Bible file to import! - Es muss eine OpenSong Bibel-Datei ausgewählt werden, die importiert werden soll! - - - PresentationMediaItem + + OpenLP Main Display Blanked + Hauptbildschirm abgedunkelt + - - File exists - Datei existiert bereits - - - Ui_OpenLPExportDialog + + OpenLP 2.0 + OpenLP 2.0 + - - Title - Titel - - - Ui_OpenSongImportDialog + + English + Englisch + - - Ready to import - Bereit zum Importieren - - - SlideController + + &File + &Datei + - - Stop continuous loop - Endlosschleife beendenAlso mir gefällt ja nur "Schleife beenden" besser (vgl. Start continuous loop) + + &Import + &Importieren + - - s - s - - - SongMediaItem + + &Export + &Exportieren + - - Song Maintenance - Liedverwaltung - - - Ui_customEditDialog + + &View + &Ansicht + - - Edit - Bearbeiten - - - Ui_AmendThemeDialog + + M&ode + M&odus + - - Gradient : - Farbverlauf : - - - ImportWizardForm + + &Tools + &Extras + - - Invalid Verse File - Ungültige Liedtext Datei - - - EditSongForm + + &Settings + Ein&stellungen + - - Error - Fehler - - - Ui_customEditDialog + + &Language + &Sprache + - - Add New - Neues anfügen - - - Ui_AuthorsDialog + + &Help + &Hilfe + - - Display name: - Anzeige Name: - - - SongMaintenanceForm + + Media Manager + Medienmanager + - - Are you sure you want to delete the selected topic? - Soll der gewählte Eintrag wirklich gelöscht werden? - - - Ui_AmendThemeDialog + + Service Manager + Ablaufverwaltung + - - Bold/Italics - Fett/Kursiv - - - Ui_SongMaintenanceDialog + + Theme Manager + Designmanager + - - Song Maintenance - Liedverwaltung - - - Ui_BibleImportWizard + + &New + &Neu + - - Welcome to the Bible Import Wizard - Willkommen beim Bibel Import Assistenten - - - SongsTab + + New Service + Neuer Ablauf + - - Songs - Lieder - - - Ui_BibleImportWizard + + Create a new service. + + - - Password: - Passwort: - - - Ui_MainWindow + + Ctrl+N + Strg+N + - - &Theme Manager - &Designmanager - - + + &Open + &Öffnen + + + + Open Service + Öffnen Ablauf + + + + Open an existing service. + + + + + Ctrl+O + Strg+O + + + + &Save + &Speichern + + + + Save Service + Ablauf speichern + + + + Save the current service to disk. + + + + + Ctrl+S + Strg+S + + + + Save &As... + Speichern &als... + + + + Save Service As + Speicher Gottesdienst unter + + + + Save the current service under a new name. + + + + + Ctrl+Shift+S + + + + + E&xit + &Beenden + + + + Quit OpenLP + OpenLP beenden + + + + Alt+F4 + Alt+F4 + + + + &Theme + &Design + + + + &Configure OpenLP... + + + + + &Media Manager + &Medienmanager + + + + Toggle Media Manager + Medienmanager ein/ausblenden + + + + Toggle the visibility of the media manager. + + + + + F8 + F8 + + + + &Theme Manager + &Designmanager + + + + Toggle Theme Manager + Designverwaltung ein/ausblenden + + + + Toggle the visibility of the theme manager. + + + + + F10 + F10 + + + + &Service Manager + Ablauf&sverwaltung + + + + Toggle Service Manager + Ablaufmanager ein/ausblenden + + + + Toggle the visibility of the service manager. + + + + + F9 + F9 + + + + &Preview Panel + &Vorschaubereich + + + + Toggle Preview Panel + Vorschaubereich ein/ausblenden + + + + Toggle the visibility of the preview panel. + + + + + F11 + F11 + + + + &Live Panel + + + + + Toggle Live Panel + + + + + Toggle the visibility of the live panel. + + + + + F12 + F12 + + + + &Plugin List + &Plugin-Liste + + + + List the Plugins + Plugins auflisten + + + + Alt+F7 + Alt+F7 + + + + &User Guide + Ben&utzerhandbuch + + + + &About + &Über + + + + More information about OpenLP + Mehr Informationen über OpenLP + + + + Ctrl+F1 + Strg+F1 + + + + &Online Help + &Online Hilfe + + + + &Web Site + &Webseite + + + + &Auto Detect + + + + + Use the system language, if available. + + + + + Set the interface language to %s + + + + + Add &Tool... + + + + + Add an application to the list of tools. + + + + + &Default + + + + + Set the view mode back to the default. + + + + + &Setup + + + + + Set the view mode to Setup. + + + + + &Live + &Live + + + + Set the view mode to Live. + + + + + Version %s of OpenLP is now available for download (you are currently running version %s). + +You can download the latest version from http://openlp.org + + + + + Your service has changed. Do you want to save those changes? + + + + + Default Theme: %s + + + + MediaManagerItem - - Preview the selected item - Zeige das auswählte Element in der Vorschau an - - - Ui_BibleImportWizard + + You must select one or more items + Sie müssen mindestens ein Element markieren + - - Version Name: - Bibelübersetzung:Meint wohl die "Bibelübersetzung" - - - Ui_AboutDialog + + Delete the selected item + Markiertes Element löschen + - - About - Über - - - MediaMediaItem + + &Add to Service + &Zum Ablauf hinzufügen + - - Select Media - Medien auswählen - - - Ui_AmendThemeDialog + + Send the selected item live + Ausgewähltes Element Live anzeigen + - - Horizontal Align: - Horizontale Ausrichtung: - - + + Add the selected item(s) to the service + Füge Element(e) zum Ablauf hinzu + + + + &Show Live + &Zeige Live + + + + Preview the selected item + Zeige das auswählte Element in der Vorschau an + + + + No Items Selected + + + + + Import %s + + + + + Import a %s + + + + + Load %s + + + + + Load a new %s + + + + + New %s + + + + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Preview %s + + + + + Add %s to Service + + + + + &Edit %s + + + + + &Delete %s + + + + + &Preview %s + + + + + &Add to selected Service Item + + + + + You must select one or more items to preview. + + + + + You must select one or more items to send live. + + + + + You must select one or more items. + + + + + No items selected + + + + + No Service Item Selected + + + + + You must select an existing service item to add to. + + + + + Invalid Service Item + + + + + You must select a %s service item. + + + + + MediaPlugin + + + <b>Media Plugin</b><br>This plugin allows the playing of audio and video media + <b>Medien Plugin</b><br>Dieses Plugin ermöglicht das Abspielen von Audio und Video Material + + + + MediaPlugin.MediaItem + + + Media + Medien + + + + Select Media + Medien auswählen + + + + Replace Live Background + + + + + You must select an item to delete. + + + + + OpenLP + + + Image Files + + + + + PluginForm + + + Plugin List + Plugin-Liste + + + + Plugin Details + Plugin-Details + + + + Version: + Version: + + + + TextLabel + Text Beschriftung + + + + About: + Über: + + + + Status: + Status: + + + + Active + Aktiv + + + + Inactive + Inaktiv + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + + + + + PresentationPlugin + + + <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + + + + PresentationPlugin.MediaItem + + + Presentation + Präsentation + + + + Select Presentation(s) + Präsentation(en) auswählen + + + + Automatic + + + + + Present using: + Anzeigen mit: + + + + File exists + Datei existiert bereits + + + + A presentation with that filename already exists. + Eine Präsentation mit diesem Dateinamen existiert bereits. + + + + You must select an item to delete. + + + + + PresentationPlugin.PresentationTab + + + Presentations + Präsentationen + + + + Available Controllers + Verfügbare Präsentationsprogramme: + + + + available + verfügbar + + + + RemotePlugin + + + <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer via a web browser or other app<br>The Primary use for this would be to send alerts from a creche + + + + + RemotePlugin.RemoteTab + + + Remotes + Fernprojektion + + + + Remotes Receiver Port + Fernprojektionsport + + + + ServiceItemEditForm + + + Service Item Maintenance + + + + + Up + + + + + Delete + Löschen + + + + Down + + + + ServiceManager - - &Edit Item - &Bearbeite Element - - - Ui_AmendThemeDialog + + Save Changes to Service? + Änderungen am Ablauf speichern? + - - Background Type: - Hintergrundtyp - - - Ui_MainWindow + + Open Service + Öffnen Ablauf + - - &Save - &Speichern + + Move to top + Nach oben verschieben + - - OpenLP 2.0 - OpenLP 2.0 - - + + 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 + + + Settings + Einstellungen + + + + SlideController + + + Move to previous + Vorherige Folie anzeigen + + + + Go to Verse + Zum Vers springen + + + + 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 + + + &Delete recorded data + Aufgezeichnete &Daten löschen + + + + Start/Stop live song usage recording + Liederstatistik unterbrechen/weiterführen + + + + <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service + <b>SongUsage-Plugin</b><br>Dieses Plugin zeichnet auf, welche Lieder Sie wie oft und wann benutzt haben und erstellt daraus eine Statistik + + + + Delete song usage to specified date + Liedstatistik bis zu einem bestimmten Termin löschen + + + + Generate report on Song Usage + Liederstatistik generieren + + + + Song Usage Status + Liedstatistik + + + + &Extract recorded data + &Entpacke aufgezeichnete Daten + + + + &Song Usage + Lieder Statistik + + + + SongsPlugin + + + &Song + &Lied + + + + Import songs using the import wizard. + + + + + Songs of Fellowship (temp menu item) + + + + + Import songs from the VOLS1_2.RTF, sof3words.rtf and sof4words.rtf supplied with the music books + + + + + Generic Document/Presentation Import (temp menu item) + + + + + Import songs from Word/Writer/Powerpoint/Impress + + + + + Open Songs of Fellowship file + + + + + Import Error + + + + + Error importing Songs of Fellowship file. +OpenOffice.org must be installed and you must be using an unedited copy of the RTF included with the Songs of Fellowship Music Editions + + + + + Open documents or presentations + + + + + <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + + + + + SongsPlugin.AuditDeleteDialog + + + Song Usage Delete + + + + + SongsPlugin.AuditDetailDialog + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + zu + + + + Report Location + Speicherort für die Statistiken + + + + SongsPlugin.AuthorsForm + + + Author Maintenance + Autorenverwaltung + + + + Display name: + Anzeige Name: + + + + First name: + Vorname: + + + + Last name: + Nachname: + + + + Error + Fehler + + + + You need to type in the first name of the author. + Sie müssen den Vornamen des Autors angeben. + + + + You need to type in the last name of the author. + Sie müssen den Nachnamen des Autors eingeben. + + + + You haven't set a display name for the author, would you like me to combine the first and last names for you? + Sie haben keinen Anzeigenamen für den Autor angegeben. Soll der Vor- mit dem Nachnamen kombiniert dafür verwendet werden? + + + + SongsPlugin.EditSongForm + + + Song Editor + Lied bearbeiten + + + + &Title: + + + + + Alt&ernate Title: + + + + + &Lyrics: + + + + + &Verse Order: + + + + + &Add + + + + + &Edit + &Bearbeiten + + + + Ed&it All + + + + + &Delete + + + + + Title && Lyrics + Titel && Liedtext + + + + Authors + Autoren + + + + &Add to Song + Zum Lied &hinzufügen + + + + &Remove + Entfe&rnen + + + + &Manage Authors, Topics, Books + Verwalte Autoren, Themen, Bücher + + + + Topic + Thema + + + + A&dd to Song + Zum Lied &hinzufügen + + + + R&emove + &Entfernen + + + + Song Book + Liederbuch + + + + Authors, Topics && Book + Autoren, Designs && Bücher + + + + Theme + Design + + + + New &Theme + + + + + Copyright Information + Copyright Angaben + + + + © + + + + + CCLI Number: + CCLI-Nummer: + + + + Comments + Kommentare + + + + Theme, Copyright Info && Comments + Design, Copyrightinformationen && Kommentare + + + + Save && Preview + Speichern && Vorschau + + + + Add Author + + + + + This author does not exist, do you want to add them? + + + + + 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? + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + Bearbeite Vers + + + + &Verse type: + + + + + &Insert + + + + + SongsPlugin.ImportWizardForm + + + No OpenLyrics Files Selected + + + + + You need to add at least one OpenLyrics song file to import from. + + + + + No OpenSong Files Selected + + + + + You need to add at least one OpenSong song file to import from. + + + + + No CCLI Files Selected + + + + + You need to add at least one CCLI file to import from. + + + + + No CSV File Selected + + + + + You need to specify a CSV file to import from. + + + + + Starting import... + Starte import ... + + + + Song Import Wizard + + + + + Welcome to the Song Import Wizard + + + + + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. + + + + + Select Import Source + Importquelle auswählen + + + + Select the import format, and where to import from. + Wähle das Import Format und woher der Import erfolgen soll. + + + + Format: + Format: + + + + OpenLyrics + + + + + OpenSong + OpenSong + + + + CCLI + + + + + CSV + CSV + + + + Add Files... + + + + + Remove File(s) + + + + + Filename: + + + + + Browse... + + + + + Importing + + + + + Please wait while your songs are imported. + + + + + Ready. + Fertig. + + + + %p% + + + + + SongsPlugin.MediaItem + + + Song + Lied + + + + Song Maintenance + Liedverwaltung + + + + Maintain the lists of authors, topics and books + Autoren, Designs und Bücher verwalten + + + + Search: + Suche: + + + + Type: + Art: + + + + Clear + + + + + Search + Suche + + + + Titles + Titel + + + + Lyrics + Liedtext + + + + Authors + Autoren + + + + %s (%s) + + + + + You must select an item to edit. + + + + + You must select an item to delete. + + + + + Delete song? + + + + + Delete %d songs? + + + + + Delete Confirmation + + + + + CCLI Licence: + CCLI-Lizenz: + + + + SongsPlugin.SongBookForm + + + Edit Book + Buch bearbeiten + + + + &Name: + + + + + &Publisher: + + + + + Error + Fehler + + + + You need to type in a name for the book. + + + + + SongsPlugin.SongImport + + + copyright + + + + + © + + + + + SongsPlugin.SongMaintenanceForm + + + Song Maintenance + Liedverwaltung + + + + Authors + Autoren + + + + Topics + Themen + + + + Books/Hymnals + Bücher/Lieder + + + + &Add + + + + + &Edit + &Bearbeiten + + + + &Delete + + + + + Error + Fehler + + + + Couldn't add your author. + + + + + Couldn't add your topic. + + + + + Couldn't add your book. + + + + + Couldn't save your author. + + + + + Couldn't save your topic. + + + + + Couldn't save your book. + + + + + 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? + + + + This author can't be deleted, they are currently assigned to at least one song. + + + + + 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? + + + + This topic can't be deleted, it is currently assigned to at least one song. + + + + + 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? + + + + This book can't 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 + + + Songs + Lieder + + + + Songs Mode + Liedermodus + + + + Enable search as you type + + + + + Display Verses on Live Tool bar + + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + Themenverwaltung + + + + Topic name: + Thema: + + + + Error + Fehler + + + + You need to type in a topic name! + Sie müssen dem Thema einen Namen geben! + + + + Splashscreen + + + Starting + Starte ... + + + + Splash Screen + Startbildschirm + + + ThemeManager - - A theme with this name already exists, would you like to overwrite it? - Ein Design mit diesem Namen existiert bereits, soll es überschrieben werden? - - - PresentationMediaItem + + Import Theme + Design importieren + - - Select Presentation(s) - Präsentation(en) auswählen - - - ThemeManager + + Delete Theme + Design löschen + - - Export a theme - Design exportieren - - - AmendThemeForm + + Error + Fehler + - - Open file - Datei öffnen - - - Ui_TopicsDialog + + Edit Theme + Design bearbeiten + - - Topic Maintenance - Themenverwaltung - - - Ui_customEditDialog + + Export Theme + Design exportieren + - - Clear edit area - Aufräumen des Bearbeiten Bereiches - - - Ui_AmendThemeDialog + + Theme Exists + Design existiert + - - Show Outline: - Rand anzeigen: - - - SongBookForm + + Save Theme - (%s) + Speichere Design - (%s) + - - You need to type in a book name! - Sie müssen ein Buchnamen eingeben! - - - ImportWizardForm + + Select Theme Import File + Wähle Datei für Design Import + - - Open OpenSong Bible - Öffne OpenSong-Bibel - - - Ui_MainWindow + + New Theme + Neues Design + - - Look && &Feel - Aussehen - - - Ui_BibleImportWizard + + Create a new theme. + + - - Ready. - Fertig. - - - ThemeManager + + Edit a theme. + + - - You have not selected a theme! - Sie haben kein Design ausgewählt! - - - Ui_SongMaintenanceDialog + + Delete a theme. + + - - Books/Hymnals - Bücher/Lieder - - - Ui_AboutDialog + + Import a theme. + + - - Contribute - Mitwirken - - - Ui_AmendThemeDialog + + Export a theme. + + - - Gradient - Farbverlauf - - - Ui_BibleImportWizard + + &Edit Theme + + - - Books Location: - Bücher Ablage: - - - Ui_OpenSongExportDialog + + &Delete Theme + + - - Full Song List - Lieder Gesamtliste - - - GeneralTab + + Set As &Global Default + + - - SongSelect Password: - SongSelect-Passwort: - - + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + You are unable to delete the default theme. + + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Theme (*.*) + + + + + File is not a valid theme. +The content encoding is not UTF-8. + + + + + File is not a valid theme. + + + + + A theme with this name already exists. Would you like to overwrite it? + + + + + ThemesTab + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Das im jeweiligen Lied eingestellte Design verwenden. Wenn für ein Lied kein Design festgelegt ist, wird das Ablaufdesign verwendet. Wenn dort auch kein Design festgelegt wurde, wird das Standarddesign benutzt. + + + + Use the global theme, overriding any themes associated with either the service or the songs. + Das Standarddesign immer verwenden, unabhängig vom Lieddesign oder Ablaufdesign + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + Nutze das dem Ablauf zugewiesene Design, das im Lied eingestellte Design wird ignoriert. Wenn dem Ablauf kein Design zugeordnet ist, dann wird das Standarddesign verwendet. + + + + Themes + Designs + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + &Service Level + + + + + &Global Level + + + + + VerseType + + + Verse + Vers + + + + Chorus + Refrain + + + + Bridge + Bridge + + + + Pre-Chorus + Vor-Refrain + + + + Intro + Intro + + + + Ending + Coda (Schluss) + + + + Other + Weitere + + diff --git a/resources/i18n/openlp_en.ts b/resources/i18n/openlp_en.ts index 7d914deb7..3b9564af0 100644 --- a/resources/i18n/openlp_en.ts +++ b/resources/i18n/openlp_en.ts @@ -1,4856 +1,3775 @@ - - - - BibleMediaItem + + + AboutForm - - Quick - + + About OpenLP + - - - Ui_customEditDialog - - Delete selected slide - - - - - BiblesTab - - - ( and ) - - - - - RemoteTab - - - Remotes - - - - - ServiceManager - - - Save Service - - - - - Ui_AmendThemeDialog - - - Shadow Size: - - - - - Ui_OpenSongExportDialog - - - Close - - - - - ThemeManager - - - Import Theme - - - - - Ui_AmendThemeDialog - - - Slide Transition - - - - - ImportWizardForm - - - Bible Exists - - - - - ThemesTab - - - Theme level - - - - - BibleMediaItem - - - Bible - - - - - ServiceManager - - - Save Changes to Service? - - - - - SongUsagePlugin - - - &Delete recorded data - - - - - Ui_OpenLPExportDialog - - - Song Title - - - - - Ui_customEditDialog - - - Edit selected slide - - - - - SongMediaItem - - - CCLI Licence: - - - - - Ui_SongUsageDeleteDialog - - - Audit Delete - - - - - BibleMediaItem - - - Clear - - - - - Ui_BibleImportWizard - - - Bible Import Wizard - - - - - Ui_customEditDialog - - - Edit All - - - - - Ui_ServiceNoteEdit - - - Service Item Notes - - - - - SongMaintenanceForm - - - Couldn't save your author! - - - - - Ui_customEditDialog - - - Clear - - - - - ThemesTab - - - Global theme - - - - - SongUsagePlugin - - - Start/Stop live song usage recording - - - - - MainWindow - - - The Main Display has been blanked out - - - - - Ui_OpenSongExportDialog - - - Lyrics - - - - - Ui_AlertDialog - - - Display - - - - - Ui_customEditDialog - - - Delete - - - - - SongMaintenanceForm - - - This author can't be deleted, they are currently assigned to at least one song! - - - - - ThemeManager - - - Create a new theme - - - - - Ui_MainWindow - - - Open an existing service - - - - - SlideController - - - Move to previous - - - - - Edit and re-preview Song - - - - - Ui_PluginViewDialog - - - Plugin Details - - - - - AlertsTab - - - pt - - - - - Edit History: - - - - - SlideController - - - Delay between slides in seconds - - - - - SongMaintenanceForm - - - Couldn't add your book! - - - - - BiblesTab - - - verse per line - - - - - Ui_customEditDialog - - - Theme: - - - - - SongMaintenanceForm - - - Error - - - - - Ui_BibleImportWizard - - - Bible: - - - - - ImportWizardForm - - - You need to specify a file with books of the Bible to use in the import! - - - - - ThemeManager - - - Delete Theme - - - - - SplashScreen - - - Splash Screen - - - - - SongMediaItem - - - Song - - - - - SongUsageDeleteForm - - - Delete Selected Audit Events? - - - - - Ui_OpenSongExportDialog - - - Song Title - - - - - BibleMediaItem - - - Search - - - - - Ui_MainWindow - - - List the Plugins - - - - - SongMaintenanceForm - - - No author selected! - - - - - SongUsagePlugin - - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - - - - - Ui_customEditDialog - - - Move slide Up 1 - - - - - SongsPlugin - - - OpenSong - - - - - AlertsManager - - - Alert message created and delayed - - - - - Ui_EditSongDialog - - - Alternative Title: - - - - - ServiceManager - - - Open Service - - - - - BiblesTab - - - Display Style: - - - - - Ui_AmendThemeDialog - - - Image - - - - - EditSongForm - - - You need to enter a song title. - - - - - ThemeManager - - - Error - - - - - ImportWizardForm - - - Invalid Bible Location - - - - - ThemesTab - - - Global level - - - - - ThemeManager - - - Make Global - - - - - Ui_MainWindow - - - &Service Manager - - - - - Ui_OpenLPImportDialog - - - Author - - - - - Ui_AmendThemeDialog - - - Height: - - - - - Ui_BibleImportWizard - - - Books Location: - - - - - ThemeManager - - - Delete a theme - - - - - Ui_BibleImportWizard - - - Crosswalk - - - - - SongBookForm - - - Error - - - - - Ui_AuthorsDialog - - - Last name: - - - - - Ui_customEditDialog - - - Title: - - - - - ImportWizardForm - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - - - - - SongMediaItem - - - Maintain the lists of authors, topics and books - - - - - Ui_AlertEditDialog - - - Save - - - - - EditCustomForm - - - You have unsaved data - - - - - BibleMediaItem - - - To: - - - - - Ui_AmendThemeDialog - - - Outline - - - - - BibleMediaItem - - - Text Search - - - - - Ui_OpenLPExportDialog - - - openlp.org Song Exporter - - - - - SongUsagePlugin - - - Delete song usage to specified date - - - - - Ui_SongUsageDetailDialog - - - Report Location - - - - - Ui_BibleImportWizard - - - OpenSong - - - - - Ui_MainWindow - - - Open Service - - - - - SongMediaItem - - - Titles - - - - - ImageMediaItem - - - Select Image(s) - - - - - BibleMediaItem - - - Search Type: - - - - - Ui_MainWindow - - - Media Manager - - - - - Alt+F4 - - - - - MediaManagerItem - - - &Preview - - - - - GeneralTab - - - CCLI Details - - - - - SongSelect Password: - - - - - Ui_MainWindow - - - Toggle the visibility of the Preview Panel - - - - - SongMaintenanceForm - - - Are you sure you want to delete the selected book? - - - - - Ui_MainWindow - - - &User Guide - - - - - SongUsageDeleteForm - - - Are you sure you want to delete selected Audit Data? - - - - - Ui_MainWindow - - - Set the interface language to English - - - - - Ui_AmendThemeDialog - - - Main Font - - - - - ImportWizardForm - - - Empty Copyright - - - - - CustomPlugin - - - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> - - - - - AuthorsForm - - - You need to type in the first name of the author. - - - - - SongsTab - - - Display Verses on Live Tool bar: - - - - - ServiceManager - - - Move to top - - - - - ImageMediaItem - - - Override background - - - - - Ui_SongMaintenanceDialog - - - Edit - - - - - Ui_OpenSongExportDialog - - - Select All - - - - - ThemesTab - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - - - - - PresentationMediaItem - - - Presentation - - - - - Ui_AmendThemeDialog - - - Solid Color - - - - - CustomTab - - - Custom - - - - - Ui_OpenLPImportDialog - - - Ready to import - - - - - MainWindow - - - OpenLP version %s has been updated to version %s - -You can obtain the latest version from http://openlp.org - - - - - Ui_BibleImportWizard - - - File Location: - - - - - SlideController - - - Go to Verse - - - - - Ui_MainWindow - - - &Import - - - - - Quit OpenLP - - - - - Ui_BibleImportWizard - - - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - - - - - Ui_OpenLPExportDialog - - - Title - - - - - ImportWizardForm - - - Empty Version Name - - - - - Ui_MainWindow - - - &Preview Panel - - - - - SlideController - - - Start continuous loop - - - - - Ui_AboutDialog - - - License - - - - - GeneralTab - - - primary - - - - - Ui_EditSongDialog - - - Add a Theme - - - - - Ui_MainWindow - - - &New - - - - - Ui_customEditDialog - - - Credits: - - - - - SlideController - - - Live - - - - - ImportWizardForm - - - You need to specify a file of Bible verses to import! - - - - - BiblesTab - - - continuous - - - - - Ui_EditVerseDialog - - - Number - - - - - GeneralTab - - - Application Startup - - - - - Ui_AmendThemeDialog - - - Use Default Location: - - - - - Ui_OpenSongImportDialog - - - Import - - - - - Ui_MainWindow - - - Ctrl+N - - - - - Ui_EditSongDialog - - - Verse Order: - - - - - Ui_SongUsageDetailDialog - - - ASelect Date Range - - - - - Ui_MainWindow - - - Default Theme: - - - - - Toggle Preview Panel - - - - - SongMediaItem - - - Lyrics - - - - - Ui_OpenLPImportDialog - - - Progress: - - - - - Ui_AmendThemeDialog - - - Shadow - - - - - GeneralTab - - - Select monitor for output display: - - - - - Ui_AmendThemeDialog - - - Italics - - - - - ServiceManager - - - Create a new service - - - - - Ui_AmendThemeDialog - - - Background: - - - - - Ui_OpenLPImportDialog - - - openlp.org Song Importer - - - - - Ui_BibleImportWizard - - - Copyright: - - - - - ThemesTab - - - Service level - - - - - BiblesTab - - - [ and ] - - - - - Ui_customEditDialog - - - Save - - - - - MediaManagerItem - - - You must select one or more items - - - - - GeneralTab - - - Application Settings - - - - - ServiceManager - - - Save this service - - - - - ImportWizardForm - - - Open Books CSV file - - - - - GeneralTab - - - SongSelect Username: - - - - - Ui_AmendThemeDialog - - - X Position: - - - - - BibleMediaItem - - - No matching book could be found in this Bible. - - - - - Ui_BibleImportWizard - - - Server: - - - - - Download Options - - - - - ImportWizardForm - - - Invalid OpenSong Bible - - - - - GeneralTab - - - CCLI Number: - - - - - Ui_AmendThemeDialog - - - Center - - - - - ServiceManager - - - Theme: - - - - - Ui_MainWindow - - - &Live - - - - - SongMaintenanceForm - - - Delete Topic - - - - - Ui_MainWindow - - - English - - - - - ImageMediaItem - - - You must select one or more items - - - - - Ui_AuthorsDialog - - - First name: - - - - - Ui_BibleImportWizard - - - Permission: - - - - - Ui_OpenSongImportDialog - - - Close - - - - - Ui_AmendThemeDialog - - - Opaque - - - - - SongMaintenanceForm - - - This book can't be deleted, it is currently assigned to at least one song! - - - - - ImportWizardForm - - - Your Bible import failed. - - - - - SlideController - - - Start playing media - - - - - SongMediaItem - - - Type: - - - - - Ui_AboutDialog - - - Close - - - - - TopicsForm - - - You need to type in a topic name! - - - - - Ui_OpenSongExportDialog - - - Song Export List - - - - - BibleMediaItem - - - Dual: - - - - - ImageTab - - - sec - - - - - ServiceManager - - - Delete From Service - - - - - GeneralTab - - - Automatically open the last service - - - - - Ui_OpenLPImportDialog - - - Song Import List - - - - - Ui_OpenSongExportDialog - - - Author - - - - - Ui_AmendThemeDialog - - - Outline Color: - - - - - Ui_BibleImportWizard - - - Select Import Source - - - - - Ui_MainWindow - - - F9 - - - - - F8 - - - - - ServiceManager - - - &Change Item Theme - - - - - Ui_SongMaintenanceDialog - - - Topics - - - - - Ui_OpenLPImportDialog - - - Import File Song List - - - - - Ui_customEditDialog - - - Edit Custom Slides - - - - - Ui_EditSongDialog - - - &Remove - - - - - Ui_BibleImportWizard - - - Set up the Bible's license details. - - - - - Ui_AmendThemeDialog - - - Alignment - - - - - SongMaintenanceForm - - - Delete Book - - - - - ThemeManager - - - Edit a theme - - - - - Ui_BibleImportWizard - - - BibleGateway - - - - - GeneralTab - - - Preview Next Song from Service Manager - - - - - Ui_EditSongDialog - - - Title && Lyrics - - - - - SongMaintenanceForm - - - No book selected! - - - - - SlideController - - - Move to live - - - - - Ui_EditVerseDialog - - - Other - - - - - Ui_EditSongDialog - - - Theme - - - - - Ui_EditVerseDialog - - - Verse - - - - - Ui_MainWindow - - - Save the current service to disk - - - - - BibleMediaItem - - - Chapter: - - - - - Ui_AmendThemeDialog - - - Bottom - - - - - PresentationTab - - - Available Controllers - - - - - ImportWizardForm - - - Open Verses CSV file - - - - - TopicsForm - - - Error - - - - - RemoteTab - - - Remotes Receiver Port - - - - - Ui_MainWindow - - - &View - - - - - Ui_AmendThemeDialog - - - Normal - - - - - Ui_OpenLPExportDialog - - - Close - - - - - Ui_BibleImportWizard - - - Username: - - - - - ThemeManager - - - Edit Theme - - - - - ServiceManager - - - &Preview Verse - - - - - Ui_AlertDialog - - - Alert Message - - - - - ImportWizardForm - - - Finished import. - - - - - GeneralTab - - - Show blank screen warning - - - - - AlertsTab - - - Location: - - - - - Ui_EditSongDialog - - - Authors, Topics && Book - - - - - EditSongForm - - - You need to enter some verses. - - - - - BibleMediaItem - - - Bible not fully loaded - - - - - CustomTab - - - Display Footer: - - - - - BiblePlugin - - - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - - - - - Ui_EditSongDialog - - - Copyright Information - - - - - Ui_MainWindow - - - &Export - - - - - Ui_AmendThemeDialog - - - Bold - - - - - SongsPlugin - - - Export songs in OpenLP 2.0 format - - - - - MediaManagerItem - - - Load a new - - - - - AlertEditForm - - - Missing data - - - - - SongsPlugin - - - <b>Song Plugin</b> <br>This plugin allows Songs to be managed and displayed.<br> - - - - - Ui_AmendThemeDialog - - - Footer Font - - - - - EditSongForm - - - Invalid verse entry - vX - - - - - BibleMediaItem - - - No Book Found - - - - - Ui_OpenLPExportDialog - - - Export - - - - - Ui_BibleImportWizard - - - Location: - - - - - BibleMediaItem - - - Keep - - - - - SongUsagePlugin - - - Generate report on Song Usage - - - - - Ui_EditSongDialog - - - Topic - - - - - Ui_MainWindow - - - &Open - - - - - PresentationMediaItem - - - Present using: - - - - - ServiceManager - - - &Live Verse - - - - - Ui_EditVerseDialog - - - Pre-Chorus - - - - - Ui_EditSongDialog - - - Lyrics: - - - - - Ui_AboutDialog - - - Project Lead - Raoul "superfly" Snyman - -Developers - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Testers - Wesley "wrst" Stout - - - - - Ui_OpenLPExportDialog - - - Lyrics - - - - - AuthorsForm - - - You haven't set a display name for the author, would you like me to combine the first and last names for you? - - - - - SongMediaItem - - - Clear - - - - - AmendThemeForm - - - Slide Height is %s rows - - - - - Ui_OpenSongImportDialog - - - Progress: - - - - - Ui_MainWindow - - - Toggle Theme Manager - - - - - Ui_AlertDialog - - - Alert Text: - - - - - Ui_EditSongDialog - - - Edit - - - - - AlertsTab - - - Font Color: - - - - - Ui_AmendThemeDialog - - - Theme Maintenance - - - - - CustomTab - - - Custom Display - - - - - Ui_OpenSongExportDialog - - - Title - - - - - Ui_AmendThemeDialog - - - <Color1> - - - - - Ui_EditSongDialog - - - Authors - - - - - ThemeManager - - - Export Theme - - - - - ServiceManager - - - (N) - - - - - Ui_SongBookDialog - - - Name: - - - - - Ui_AuthorsDialog - - - Author Maintenance - - - - - Ui_AmendThemeDialog - - - Font Footer - - - - - Ui_MainWindow - - - &Settings - - - - - &Options - - - - - BibleMediaItem - - - Results: - - - - - Ui_OpenLPExportDialog - - - Full Song List - - - - - Ui_OpenSongImportDialog - - - OpenSong Folder: - - - - - SlideController - - - Move to last - - - - - Ui_OpenLPExportDialog - - - Progress: - - - - - Ui_SongMaintenanceDialog - - - Add - - - - - SongMaintenanceForm - - - Are you sure you want to delete the selected author? - - - - - SongUsagePlugin - - - Song Usage Status - - - - - BibleMediaItem - - - Verse Search - - - - - Ui_SongBookDialog - - - Edit Book - - - - - EditSongForm - - - Save && Preview - - - - - Ui_SongBookDialog - - - Publisher: - - - - - Ui_AmendThemeDialog - - - Font Weight: - - - - - Ui_BibleImportWizard - - - Bible Filename: - - - - - Ui_AmendThemeDialog - - - Transparent - - - - - SongMediaItem - - - Search - - - - - Ui_BibleImportWizard - - - Format: - - - - - Ui_AmendThemeDialog - - - Background - - - - - Ui_BibleImportWizard - - - Importing - - - - - Ui_customEditDialog - - - Edit all slides - - - - - MediaMediaItem - - - Select Media - - - - - PresentationMediaItem - - - Select Presentation(s) - - - - - SongMediaItem - - - Authors - - - - - Ui_PluginViewDialog - - - Active - - - - - Ui_MainWindow - - - Save the current service under a new name - - - - - Ctrl+O - - - - - Ui_AmendThemeDialog - - - Other Options - - - - - SongMaintenanceForm - - - Couldn't add your author! - - - - - Ui_AlertEditDialog - - - Edit - - - - - Ui_EditSongDialog - - - Song Editor - - - - - AlertsTab - - - Font - - - - - SongsPlugin - - - &Song - - - - - Ui_MainWindow - - - &File - - - - - MediaManagerItem - - - &Edit - - - - - Ui_AmendThemeDialog - - - Vertical - - - - - Width: - - - - - ThemeManager - - - You are unable to delete the default theme! - - - - - ThemesTab - - - Use the global theme, overriding any themes associated with either the service or the songs. - - - - - BibleMediaItem - - - Version: - - - - - Ui_AboutDialog - - - OpenLP <version> build <revision> - Open Source Lyrics Projection + + OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - - - SongsPlugin - - - OpenLP 2.0 - - - - - ServiceManager - - - New Service - - - - - Ui_TopicsDialog - - - Topic name: - - - - - ThemeManager - - - File is not a valid theme! - - - - - Ui_BibleImportWizard - - - License Details - - - - - ServiceManager - - - Move down - - - - - Ui_EditSongDialog - - - R&emove - - - - - Ui_AmendThemeDialog - - - Middle - - - - - Ui_BibleImportWizard - - - Verse Location: - - - - - AlertEditForm - - - Item selected to Edit - - - - - BibleMediaItem - - - From: - - - - - Ui_AmendThemeDialog - - - Shadow Color: - - - - - ServiceManager - - - &Notes - - - - - Ui_MainWindow - - - E&xit - - - - - Ui_OpenLPImportDialog - - - Close - - - - - MainWindow - - - OpenLP Version Updated - - - - - Ui_customEditDialog - - - Replace edited slide - + - - Add new slide at bottom - - - - - EditCustomForm - - - You need to enter a title - - - - - ThemeManager - - - Theme Exists - - - - - Ui_MainWindow - - - &Help - - - - - Ui_OpenSongExportDialog - - - OpenSong Song Exporter - - - - - Ui_AmendThemeDialog - - - Vertical Align: - - - - - TestMediaManager - - - Item2 - + + About + - - Item1 - + + Project Lead + Raoul "superfly" Snyman + +Developers + Tim "TRB143" Bentley + Jonathan "gushie" Corwin + Michael "cocooncrash" Gorven + Scott "sguerrieri" Guerrieri + Raoul "superfly" Snyman + Martin "mijiti" Thompson + Jon "Meths" Tibble + +Contributors + Meinert "m2j" Jordan + Christian "crichter" Richter + Maikel Stuivenberg + Carsten "catini" Tingaard + +Testers + Philip "Phill" Ridout + Wesley "wrst" Stout (lead) + +Packagers + Thomas "tabthorpe" Abthorpe (FreeBSD) + Tim "TRB143" Bentley (Fedora) + Michael "cocooncrash" Gorven (Ubuntu) + Matthias "matthub" Hub (Mac OS X) + Raoul "superfly" Snyman (Windows) + + - - - Ui_AmendThemeDialog - - Top - + + Credits + - - - BiblesTab - - Display Dual Bible Verses - + + Copyright © 2004-2010 Raoul Snyman +Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard + +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. + + +GNU GENERAL PUBLIC LICENSE +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification follow. + +GNU GENERAL PUBLIC LICENSE +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: + +a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. + +b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. + +c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. + +3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: + +a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. + +This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version', you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. + +<one line to give the program's name and a brief idea of what it does.> +Copyright (C) <year> <name of author> + +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it starts in an interactive mode: + +Gnomovision version 69, Copyright (C) year name of author +Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type "show w". +This is free software, and you are welcome to redistribute it under certain conditions; type "show c" for details. + +The hypothetical commands "show w" and "show c" should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than "show w" and "show c"; they could even be mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: + +Yoyodyne, Inc., hereby disclaims all copyright interest in the program "Gnomovision" (which makes passes at compilers) written by James Hacker. + +<signature of Ty Coon>, 1 April 1989 +Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. + - - - Ui_MainWindow - - Toggle Service Manager - + + License + - - - MediaManagerItem - - &Add to Service - + + Contribute + - - + + + Close + + + + + build %s + + + + + AlertsPlugin + + + &Alert + + + + + <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen + + + + + Show an alert message. + + + + + AlertsPlugin.AlertForm + + + Alert Message + + + + + Alert &text: + + + + + &Parameter(s): + + + + + &New + + + + + &Save + + + + + &Delete + + + + + Displ&ay + + + + + Display && Cl&ose + + + + + &Close + + + + + New Alert + + + + + You haven't specified any text for your alert. Please type in some text before clicking New. + + + + + AlertsPlugin.AlertsManager + + + Alert message created and displayed. + + + + + AlertsPlugin.AlertsTab + + + Alerts + + + + + Font + + + + + Font Name: + + + + + Font Color: + + + + + Background Color: + + + + + Font Size: + + + + + pt + + + + + Alert timeout: + + + + + s + + + + + Location: + + + + + Preview + + + + + openlp.org + + + + + Top + + + + + Middle + + + + + Bottom + + + + AmendThemeForm - - First Color: - - - - - ThemesTab - - - Song level - - - - - alertsPlugin - - - Show an alert message - - - - - Ui_MainWindow - - - Ctrl+F1 - - - - - SongMaintenanceForm - - - Couldn't save your topic! - - - - - Ui_OpenLPExportDialog - - - Remove Selected - - - - - ThemeManager - - - Delete theme - - - - - ImageTab - - - Image Settings - - - - - Ui_OpenSongImportDialog - - - OpenSong Song Importer - - - - - BiblesTab - - - Bibles - - - - - SongUsagePlugin - - - &Extract recorded data - - - - - AlertsTab - - - Font Name: - - - - - Ui_MainWindow - - - &Web Site - - - - - MediaManagerItem - - - Send the selected item live - - - - - Ui_MainWindow - - - M&ode - + + Theme Maintenance + - - Translate the interface to your language - + + &Visibility: + - - Service Manager - - - - - CustomMediaItem - - - Custom - - - - - ImageMediaItem - - - No items selected... - - - - - Ui_BibleImportWizard - - - OSIS - - - - - SongsPlugin - - - openlp.org 1.0 - - - - - Ui_MainWindow - - - &Theme - - - - - Ui_EditVerseDialog - - - Edit Verse - - - - - Ui_MainWindow - - - &Language - - - - - SlideController - - - Verse - - - - - ImportWizardForm - - - You need to specify an OpenSong Bible file to import! - - - - - ServiceManager - - - Your service is unsaved, do you want to save those changes before creating a new one ? - - - - - Ui_OpenSongExportDialog - - - Remove Selected - - - - - SongMediaItem - - - Search: - - - - - MainWindow - - - Save Changes to Service? - + + Opaque + - - Your service has changed, do you want to save those changes? - + + Transparent + - - - EditSongForm - - Invalid verse entry - values must be Numeric, I,B,C,T,P,E,O - + + Type: + - - - Ui_EditSongDialog - - &Add to Song - + + Solid Color + - - - Ui_MainWindow - - &About - + + Gradient + - - - BiblesTab - - Only show new chapter numbers - + + Image + - - - ImportWizardForm - - You need to specify a version name for your Bible! - + + Image: + - - - Ui_AlertEditDialog - - Delete - + + Gradient: + - - - EditCustomForm - - Error - + + Horizontal + - - - RemotesPlugin - - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer.<br>The Primary use for this would be to send alerts from a creche - + + Vertical + - - - SongMaintenanceForm - - This topic can't be deleted, it is currently assigned to at least one song! - + + Circular + - - - BibleMediaItem - - Find: - + + &Background + - - - AlertEditForm - - Item selected to Add - + + Main Font + - - - Ui_AmendThemeDialog - - Right - + + Font: + - - - ThemeManager - - Save Theme - (%s) - + + Color: + - - - ImageMediaItem - - Allow background of live slide to be overridden - + + Size: + - - - MediaManagerItem - - Add the selected item(s) to the service - + + pt + - - - AuthorsForm - - Error - + + Wrap indentation: + - - - BibleMediaItem - - Book: - + + Adjust line spacing: + - - - Ui_AmendThemeDialog - - Font Color: - + + Normal + - - - Ui_OpenLPExportDialog - - Select openlp.org export filename: - + + Bold + - - - Ui_SettingsDialog - - Settings - + + Italics + - - - BiblesTab - - Verse Display - + + Bold/Italics + - - - MediaManagerItem - - Edit the selected - + + Style: + - - - SlideController - - Move to next - + + Display Location + - - - Ui_MainWindow - - &Plugin List - + + X position: + - - + + + Y position: + + + + + Width: + + + + + Height: + + + + + px + + + + + &Main Font + + + + + Footer Font + + + + + &Footer Font + + + + + Outline + + + + + Outline size: + + + + + Outline color: + + + + + Show outline: + + + + + Shadow + + + + + Shadow size: + + + + + Shadow color: + + + + + Show shadow: + + + + + Alignment + + + + + Horizontal align: + + + + + Left + + + + + Right + + + + + Center + + + + + Vertical align: + + + + + Top + + + + + Middle + + + + + Bottom + + + + + Slide Transition + + + + + &Other Options + + + + + Preview + + + + + All Files + + + + + Select Image + + + + + First color: + + + + + Second color: + + + + + Slide height is %s rows. + + + + + Theme &name: + + + + + Use default location + + + + + Transition active + + + + + BibleDB + + + Book not found + + + + BiblePlugin - - &Bible - - - - - Ui_BibleImportWizard - - - Web Download - - - - - Ui_AmendThemeDialog - - - Horizontal - - - - - ImportWizardForm - - - Open OSIS file - - - - - SongMaintenanceForm - - - Couldn't save your book! - + + <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. + - - Couldn't add your topic! - + + &Bible + - - - Ui_AmendThemeDialog + + + BiblesPlugin,BiblesTab - - pt - + + Bibles + - - - Ui_MainWindow + + + BiblesPlugin.BiblesTab - - &Add Tool... - + + Verse Display + - - - Ui_AmendThemeDialog - - <Color2> - + + Only show new chapter numbers + - - - ServiceManager - - Move up - + + Layout style: + - - - Ui_OpenLPImportDialog - - Lyrics - + + Display style: + - - - BiblesTab - - No brackets - + + Bible theme: + - - - Ui_AlertEditDialog - - Maintain Alerts - + + Verse Per Slide + - - - Ui_AmendThemeDialog - - px - + + Verse Per Line + - - - ServiceManager - - Select a theme for the service - + + Continuous + - - - ThemesTab - - Themes - + + No Brackets + - - - ServiceManager - - Move to bottom - + + ( And ) + - - - Ui_PluginViewDialog - - Status: - + + { And } + - - - Ui_EditSongDialog - - CCLI Number: - + + [ And ] + - - - ImportWizardForm - - This Bible already exists! Please import a different Bible or first delete the existing one. - + + Note: +Changes do not affect verses already in the service. + - - - Ui_MainWindow - - &Translate - + + Display dual Bible verses + - - - AlertEditForm + + + BiblesPlugin.ImportWizardForm - - Please Save or Clear seletced item - + + Bible Import Wizard + - - - Ui_MainWindow - - Save Service As - + + Welcome to the Bible Import Wizard + - - - Ui_SongMaintenanceDialog - - Authors - + + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + - - - SongUsageDetailForm - - Output File Location - + + Select Import Source + - - - BiblesTab - - { and } - + + Select the import format, and where to import from. + - - + + + Format: + + + + + OSIS + + + + + CSV + + + + + OpenSong + + + + + Web Download + + + + + File location: + + + + + Books location: + + + + + Verse location: + + + + + Bible filename: + + + + + Location: + + + + + Crosswalk + + + + + BibleGateway + + + + + Bible: + + + + + Download Options + + + + + Server: + + + + + Username: + + + + + Password: + + + + + Proxy Server (Optional) + + + + + License Details + + + + + Set up the Bible's license details. + + + + + Version name: + + + + + Copyright: + + + + + Permission: + + + + + Importing + + + + + Please wait while your Bible is imported. + + + + + Ready. + + + + + Invalid Bible Location + + + + + You need to specify a file to import your Bible from. + + + + + Invalid Books File + + + + + You need to specify a file with books of the Bible to use in the import. + + + + + Invalid Verse File + + + + + You need to specify a file of Bible verses to import. + + + + + Invalid OpenSong Bible + + + + + You need to specify an OpenSong Bible file to import. + + + + + Empty Version Name + + + + + You need to specify a version name for your Bible. + + + + + Empty Copyright + + + + + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + + + + + Bible Exists + + + + + This Bible already exists! Please import a different Bible or first delete the existing one. + + + + + Open OSIS File + + + + + Open Books CSV File + + + + + Open Verses CSV File + + + + + Open OpenSong Bible + + + + + Starting import... + + + + + Finished import. + + + + + Your Bible import failed. + + + + + BiblesPlugin.MediaItem + + + Bible + + + + + Quick + + + + + Advanced + + + + + Version: + + + + + Dual: + + + + + Search type: + + + + + Find: + + + + + Search + + + + + Results: + + + + + Book: + + + + + Chapter: + + + + + Verse: + + + + + From: + + + + + To: + + + + + Verse Search + + + + + Text Search + + + + + Clear + + + + + Keep + + + + + No Book Found + + + + + No matching book could be found in this Bible. + + + + + etc + + + + + Bible not fully loaded. + + + + + BiblesPlugin.Opensong + + + Importing + + + + + CustomPlugin + + + <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> + + + + + CustomPlugin.CustomTab + + + Custom + + + + + Custom Display + + + + + Display footer + + + + + CustomPlugin.EditCustomForm + + + Edit Custom Slides + + + + + Move slide up once position. + + + + + Move slide down one position. + + + + + &Title: + + + + + Add New + + + + + Add a new slide at bottom. + + + + + Edit + + + + + Edit the selected slide. + + + + + Edit All + + + + + Edit all the slides at once. + + + + + Save + + + + + Save the slide currently being edited. + + + + + Delete + + + + + Delete the selected slide. + + + + + Clear + + + + + Clear edit area + + + + + Split Slide + + + + + Split a slide into two by inserting a slide splitter. + + + + + The&me: + + + + + &Credits: + + + + + Save && Preview + + + + + Error + + + + + You need to type in a title. + + + + + You need to add at least one slide + + + + + You have one or more unsaved slides, please either save your slide(s) or clear your changes. + + + + + CustomPlugin.MediaItem + + + Custom + + + + + You haven't selected an item to edit. + + + + + You haven't selected an item to delete. + + + + + DisplayTab + + + Displays + + + + + Default Settings + + + + + X: + + + + + Y: + + + + + Height: + + + + + Width: + + + + + Custom Settings + + + + + Width + + + + + Override display settings + + + + GeneralTab - - Prompt to save Service before starting New - + + CCLI Details + - - - ImportWizardForm - - Starting import... - + + SongSelect Password: + - - - BiblesTab - - Note: -Changes don't affect verses already in the service - + + primary + - - - Ui_EditVerseDialog - - Intro - + + Application Startup + - - - ServiceManager - - Move up order - + + Select monitor for output display: + - - - PresentationTab - - available - + + Application Settings + - - - ThemeManager - - default - + + SongSelect Username: + - - - SongMaintenanceForm - - Delete Author - + + CCLI Number: + - - - Ui_AmendThemeDialog - - Display Location - + + Automatically open the last service + - - - Ui_PluginViewDialog - - Version: - + + Preview Next Song from Service Manager + - - - Ui_AlertEditDialog - - Add - + + Show blank screen warning + - - - GeneralTab - - General - + + Prompt to save Service before starting New + - - - Ui_AmendThemeDialog - - Y Position: - + + General + - - - ServiceManager - - Move down order - + + Show the splash screen + - - - BiblesTab - - verse per slide - + + Screen + - - - Ui_BibleImportWizard - - Welcome to the Bible Import Wizard - + + Monitors + - - - Ui_AmendThemeDialog - - Show Shadow: - + + Display if a single screen + - - - AlertsTab - - - Preview - - - - - alertsPlugin - - - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - - - - - GeneralTab - - - Show the splash screen - - - - - Ui_MainWindow - - - New Service - - - - - SlideController - - - Move to first - - - - - Ui_MainWindow - - - &Online Help - - - - - SlideController - - - Blank Screen - - - - - Ui_MainWindow - - - Save Service - - - - - Save &As... - - - - - Toggle the visibility of the Media Manager - - - - - MediaManagerItem - - - Delete the selected item - - - - - Ui_EditSongDialog - - - Add - - - - - alertsPlugin - - - &Alert - - - - - BibleMediaItem - - - Advanced - - - - - ImageMediaItem - - - Image(s) - - - - - Ui_MainWindow - - - F11 - - - - - F10 - - - - - F12 - - - - - Ui_BibleImportWizard - - - Select the import format, and where to import from. - - - - - Ui_MainWindow - - - Alt+F7 - - - - - Add an application to the list of tools - - - - - MediaPlugin - - - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - - - - - BiblesTab - - - Bible Theme: - - - - - SongsPlugin - - - Export songs in openlp.org 1.0 format - - - - - Ui_MainWindow - - - Theme Manager - - - - - AlertsTab - - - Alerts - - - - - Ui_customEditDialog - - - Move slide down 1 - - - - - Ui_AmendThemeDialog - - - Font: - - - - - ServiceManager - - - Load an existing service - - - - - Ui_MainWindow - - - Toggle the visibility of the Theme Manager - - - - - PresentationTab - - - Presentations - - - - - SplashScreen - - - Starting - - - - - ImageTab - - - Slide Loop Delay: - - - - - ServiceManager - - - Move to end - - - - - AlertsTab - - - Alert timeout: - - - - - Ui_MainWindow - - - &Preview Pane - - - - - MediaManagerItem - - - Add a new - - - - - ThemeManager - - - Select Theme Import File - - - - - New Theme - - - - - MediaMediaItem - - - Media - - - - - Ui_BibleImportWizard - - - Password: - - - - - Ui_AmendThemeDialog - - - Outline Size: - - - - - Ui_OpenSongExportDialog - - - Progress: - - - - - AmendThemeForm - - - Second Color: - - - - - Ui_EditSongDialog - - - Theme, Copyright Info && Comments - - - - - Ui_MainWindow - - - &Theme Manager - - - - - Ui_OpenLPImportDialog - - - Select openlp.org songfile to import: - - - - - Ui_EditSongDialog - - - Song Book - - - - - alertsPlugin - - - F7 - - - - - Ui_OpenLPExportDialog - - - Author - - - - - Ui_AmendThemeDialog - - - Wrap Indentation - - - - - ThemeManager - - - Import a theme - - - - - PresentationPlugin - - - <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - - - - - ImageMediaItem - - - Image - - - - - SongsTab - - - Enable search as you type: - - - - - Ui_AlertDialog - - - Cancel - - - - - Ui_OpenLPImportDialog - - - Import - - - - - Ui_EditVerseDialog - - - Chorus - - - - - Ui_EditSongDialog - - - Edit All - - - - - AuthorsForm - - - You need to type in the last name of the author. - - - - - SongsTab - - - Songs Mode - - - - - Ui_AmendThemeDialog - - - Left - - - - - ThemesTab - - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - - - - - ImageTab - - - Images - - - - - BibleMediaItem - - - Verse: - - - - - Ui_BibleImportWizard - - - CSV - - - - - Ui_OpenLPExportDialog - - - Song Export List - - - - - ThemeManager - - - Export theme - - - - - Ui_SongMaintenanceDialog - - - Delete - - - - - Ui_AmendThemeDialog - - - Theme Name: - - - - - AlertsManager - - - - - - - - Ui_AboutDialog - - - About OpenLP - - - - - Ui_MainWindow - - - Toggle the visibility of the Service Manager - - - - - PresentationMediaItem - - - A presentation with that filename already exists. - - - - - AlertsTab - - - openlp.org - - - - - ImportWizardForm - - - Invalid Books File - - - - - Ui_OpenLPImportDialog - - - Song Title - - - - - MediaManagerItem - - - &Show Live - - - - - AlertsTab - - - Keep History: - - - - - Ui_AmendThemeDialog - - - Image: - - - - - Ui_customEditDialog - - - Set Theme for Slides - - - - - Ui_MainWindow - - - More information about OpenLP - - - - - AlertsTab - - - Background Color: - - - - - SongMaintenanceForm - - - No topic selected! - - - - - Ui_MainWindow - - - &Media Manager - - - - - &Tools - - - - - AmendThemeForm - - - Background Color: - - - - - Ui_EditSongDialog - - - A&dd to Song - - - - - Title: - - - - - GeneralTab - - - Screen - - - - - AlertsTab - - - s - - - - + + ImagePlugin - - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any somgs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> - + + <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> + - - - Ui_AlertEditDialog + + + ImagePlugin.ImageTab - - Clear - - - - - Ui_BibleImportWizard - - - Please wait while your Bible is imported. - - - - - MediaManagerItem - - - No items selected... - - - - - Ui_OpenLPImportDialog - - - Select All - - - - - Ui_AmendThemeDialog - - - Font Main - - - - - ImageMediaItem - - - Images (*.jpg *jpeg *.gif *.png *.bmp) - - - - - Ui_OpenLPImportDialog - - - Title - - - - - Ui_OpenSongExportDialog - - - Select OpenSong song folder: - - - - - Ui_MainWindow - - - Toggle Media Manager - - - - - SongUsagePlugin - - - &Song Usage - - - - - GeneralTab - - - Monitors - - - - - EditCustomForm - - - You need to enter a slide - - - - - ImportWizardForm - - - You need to specify a file to import your Bible from! - - - - - Ui_EditVerseDialog - - - Verse Type - - - - - ThemeManager - - - You have not selected a theme! - - - - - Ui_EditSongDialog - - - Comments - - - - - AlertsTab - - - Bottom - - - - - Ui_MainWindow - - - Create a new Service - - - - - AlertsTab - - - Top - - - - - SlideController - - - Preview - - - - - Ui_PluginViewDialog - - - TextLabel - + + Images + - - About: - + + Image Settings + - - Inactive - - - - - Ui_OpenSongExportDialog - - - Ready to export - + + Slide Loop Delay: + - - Export - + + sec + - - - Ui_PluginViewDialog + + + ImagePlugin.MediaItem - - Plugin List - + + Image + - - - Ui_AmendThemeDialog - - Transition Active: - + + Select Image(s) + - - - Ui_BibleImportWizard - - Proxy Server (Optional) - + + All Files + - - - Ui_EditSongDialog - - &Manage Authors, Topics, Books - + + Replace Live Background + - - - Ui_SongUsageDetailDialog - - Audit Detail Extraction - + + You must select an item to delete. + - - - Ui_OpenLPExportDialog - - Ready to export - + + Image(s) + - - - EditCustomForm - - Save && Preview - + + You must select an item to process. + - - - Ui_OpenLPExportDialog + + + LanguageManager - - Select All - + + Language + - - - Ui_SongUsageDetailDialog - - to - + + After restart new Language settings will be used. + - - - Ui_AmendThemeDialog - - - Size: - - - - + + MainWindow - - OpenLP Main Display Blanked - - - - - Ui_OpenLPImportDialog - - - Remove Selected - - - - - OpenSongBible - - - Importing - - - - - Ui_EditSongDialog - - - Delete - - - - - Ui_MainWindow - - - Ctrl+S - - - - - PresentationMediaItem - - - File exists - - - - - Ui_OpenSongImportDialog - - - Ready to import - - - - - SlideController - - - Stop continuous loop - + + The Main Display has been blanked out + - - s - + + OpenLP Version Updated + - - - SongMediaItem - - Song Maintenance - + + Save Changes to Service? + - - - Ui_customEditDialog - - Edit - + + OpenLP Main Display Blanked + - - - Ui_AmendThemeDialog - - Gradient : - + + OpenLP 2.0 + - - - BiblesTab - - Layout Style: - + + English + - - - ImportWizardForm - - Invalid Verse File - + + &File + - - - EditSongForm - - Error - + + &Import + - - - Ui_customEditDialog - - Add New - + + &Export + - - - Ui_AuthorsDialog - - Display name: - + + &View + - - - SongMaintenanceForm - - Are you sure you want to delete the selected topic? - + + M&ode + - - - Ui_AmendThemeDialog - - Bold/Italics - + + &Tools + - - - Ui_SongMaintenanceDialog - - Song Maintenance - + + &Settings + - - - Ui_EditVerseDialog - - Bridge - + + &Language + - - - SongsTab - - Songs - + + &Help + - - - Ui_AmendThemeDialog - - Preview - + + Media Manager + - - - Ui_AboutDialog - - Credits - + + Service Manager + - - + + + Theme Manager + + + + + &New + + + + + New Service + + + + + Create a new service. + + + + + Ctrl+N + + + + + &Open + + + + + Open Service + + + + + Open an existing service. + + + + + Ctrl+O + + + + + &Save + + + + + Save Service + + + + + Save the current service to disk. + + + + + Ctrl+S + + + + + Save &As... + + + + + Save Service As + + + + + Save the current service under a new name. + + + + + Ctrl+Shift+S + + + + + E&xit + + + + + Quit OpenLP + + + + + Alt+F4 + + + + + &Theme + + + + + &Configure OpenLP... + + + + + &Media Manager + + + + + Toggle Media Manager + + + + + Toggle the visibility of the media manager. + + + + + F8 + + + + + &Theme Manager + + + + + Toggle Theme Manager + + + + + Toggle the visibility of the theme manager. + + + + + F10 + + + + + &Service Manager + + + + + Toggle Service Manager + + + + + Toggle the visibility of the service manager. + + + + + F9 + + + + + &Preview Panel + + + + + Toggle Preview Panel + + + + + Toggle the visibility of the preview panel. + + + + + F11 + + + + + &Live Panel + + + + + Toggle Live Panel + + + + + Toggle the visibility of the live panel. + + + + + F12 + + + + + &Plugin List + + + + + List the Plugins + + + + + Alt+F7 + + + + + &User Guide + + + + + &About + + + + + More information about OpenLP + + + + + Ctrl+F1 + + + + + &Online Help + + + + + &Web Site + + + + + &Auto Detect + + + + + Use the system language, if available. + + + + + Set the interface language to %s + + + + + Add &Tool... + + + + + Add an application to the list of tools. + + + + + &Default + + + + + Set the view mode back to the default. + + + + + &Setup + + + + + Set the view mode to Setup. + + + + + &Live + + + + + Set the view mode to Live. + + + + + Version %s of OpenLP is now available for download (you are currently running version %s). + +You can download the latest version from http://openlp.org + + + + + Your service has changed. Do you want to save those changes? + + + + + Default Theme: %s + + + + MediaManagerItem - - Preview the selected item - + + You must select one or more items + - - - Ui_BibleImportWizard - - Version Name: - + + &Add to Service + - - - Ui_AboutDialog - - About - + + Send the selected item live + - - - Ui_EditVerseDialog - - Ending - + + Add the selected item(s) to the service + - - - Ui_AmendThemeDialog - - Horizontal Align: - + + Delete the selected item + - - + + + &Show Live + + + + + Preview the selected item + + + + + No Items Selected + + + + + Import %s + + + + + Import a %s + + + + + Load %s + + + + + Load a new %s + + + + + New %s + + + + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Preview %s + + + + + Add %s to Service + + + + + &Edit %s + + + + + &Delete %s + + + + + &Preview %s + + + + + &Add to selected Service Item + + + + + You must select one or more items to preview. + + + + + You must select one or more items to send live. + + + + + You must select one or more items. + + + + + No items selected + + + + + No Service Item Selected + + + + + You must select an existing service item to add to. + + + + + Invalid Service Item + + + + + You must select a %s service item. + + + + + MediaPlugin + + + <b>Media Plugin</b><br>This plugin allows the playing of audio and video media + + + + + MediaPlugin.MediaItem + + + Media + + + + + Select Media + + + + + Replace Live Background + + + + + You must select an item to delete. + + + + + OpenLP + + + Image Files + + + + + PluginForm + + + Plugin List + + + + + Plugin Details + + + + + Version: + + + + + TextLabel + + + + + About: + + + + + Status: + + + + + Active + + + + + Inactive + + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + + + + + PresentationPlugin + + + <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + + + + PresentationPlugin.MediaItem + + + Presentation + + + + + Select Presentation(s) + + + + + Automatic + + + + + Present using: + + + + + File exists + + + + + A presentation with that filename already exists. + + + + + You must select an item to delete. + + + + + PresentationPlugin.PresentationTab + + + Presentations + + + + + Available Controllers + + + + + available + + + + + RemotePlugin + + + <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer via a web browser or other app<br>The Primary use for this would be to send alerts from a creche + + + + + RemotePlugin.RemoteTab + + + Remotes + + + + + Remotes Receiver Port + + + + + ServiceItemEditForm + + + Service Item Maintenance + + + + + Up + + + + + Delete + + + + + Down + + + + ServiceManager - - &Edit Item - - - - - Ui_AmendThemeDialog - - - Background Type: - - - - - Ui_MainWindow - - - &Save - + + Save Service + - - OpenLP 2.0 - + + 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 + + + Settings + + + + + 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 + + + &Delete recorded data + + + + + Start/Stop live song usage recording + + + + + <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service + + + + + Delete song usage to specified date + + + + + Generate report on Song Usage + + + + + Song Usage Status + + + + + &Extract recorded data + + + + + &Song Usage + + + + + SongsPlugin + + + &Song + + + + + Import songs using the import wizard. + + + + + Songs of Fellowship (temp menu item) + + + + + Import songs from the VOLS1_2.RTF, sof3words.rtf and sof4words.rtf supplied with the music books + + + + + Generic Document/Presentation Import (temp menu item) + + + + + Import songs from Word/Writer/Powerpoint/Impress + + + + + Open Songs of Fellowship file + + + + + Import Error + + + + + Error importing Songs of Fellowship file. +OpenOffice.org must be installed and you must be using an unedited copy of the RTF included with the Songs of Fellowship Music Editions + + + + + Open documents or presentations + + + + + <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + + + + + SongsPlugin.AuditDeleteDialog + + + Song Usage Delete + + + + + SongsPlugin.AuditDetailDialog + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + + + + + Report Location + + + + + SongsPlugin.AuthorsForm + + + Author Maintenance + + + + + Display name: + + + + + First name: + + + + + Last name: + + + + + Error + + + + + You need to type in the first name of the author. + + + + + You need to type in the last name of the author. + + + + + You haven't set a display name for the author, would you like me to combine the first and last names for you? + + + + + SongsPlugin.EditSongForm + + + Song Editor + + + + + &Title: + + + + + Alt&ernate Title: + + + + + &Lyrics: + + + + + &Verse Order: + + + + + &Add + + + + + &Edit + + + + + Ed&it All + + + + + &Delete + + + + + Title && Lyrics + + + + + Authors + + + + + &Add to Song + + + + + &Remove + + + + + &Manage Authors, Topics, Books + + + + + Topic + + + + + A&dd to Song + + + + + R&emove + + + + + Song Book + + + + + Authors, Topics && Book + + + + + Theme + + + + + New &Theme + + + + + Copyright Information + + + + + © + + + + + CCLI Number: + + + + + Comments + + + + + Theme, Copyright Info && Comments + + + + + Save && Preview + + + + + Add Author + + + + + This author does not exist, do you want to add them? + + + + + 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? + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + + + + + &Verse type: + + + + + &Insert + + + + + SongsPlugin.ImportWizardForm + + + No OpenLyrics Files Selected + + + + + You need to add at least one OpenLyrics song file to import from. + + + + + No OpenSong Files Selected + + + + + You need to add at least one OpenSong song file to import from. + + + + + No CCLI Files Selected + + + + + You need to add at least one CCLI file to import from. + + + + + No CSV File Selected + + + + + You need to specify a CSV file to import from. + + + + + Starting import... + + + + + Song Import Wizard + + + + + Welcome to the Song Import Wizard + + + + + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. + + + + + Select Import Source + + + + + Select the import format, and where to import from. + + + + + Format: + + + + + OpenLyrics + + + + + OpenSong + + + + + CCLI + + + + + CSV + + + + + Add Files... + + + + + Remove File(s) + + + + + Filename: + + + + + Browse... + + + + + Importing + + + + + Please wait while your songs are imported. + + + + + Ready. + + + + + %p% + + + + + SongsPlugin.MediaItem + + + Song + + + + + Song Maintenance + + + + + Maintain the lists of authors, topics and books + + + + + Search: + + + + + Type: + + + + + Clear + + + + + Search + + + + + Titles + + + + + Lyrics + + + + + Authors + + + + + %s (%s) + + + + + You must select an item to edit. + + + + + You must select an item to delete. + + + + + Delete song? + + + + + Delete %d songs? + + + + + Delete Confirmation + + + + + CCLI Licence: + + + + + SongsPlugin.SongBookForm + + + Edit Book + + + + + &Name: + + + + + &Publisher: + + + + + Error + + + + + You need to type in a name for the book. + + + + + SongsPlugin.SongImport + + + copyright + + + + + © + + + + + SongsPlugin.SongMaintenanceForm + + + Song Maintenance + + + + + Authors + + + + + Topics + + + + + Books/Hymnals + + + + + &Add + + + + + &Edit + + + + + &Delete + + + + + Error + + + + + Couldn't add your author. + + + + + Couldn't add your topic. + + + + + Couldn't add your book. + + + + + Couldn't save your author. + + + + + Couldn't save your topic. + + + + + Couldn't save your book. + + + + + Delete Author + + + + + Are you sure you want to delete the selected author? + + + + + This author can't 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 can't 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 can't 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 + + + + + SongsPlugin.SongsTab + + + Songs + + + + + Songs Mode + + + + + Enable search as you type + + + + + Display Verses on Live Tool bar + + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + + + + + Topic name: + + + + + Error + + + + + You need to type in a topic name! + + + + + Splashscreen + + + Starting + + + + + Splash Screen + + + + ThemeManager - - A theme with this name already exists, would you like to overwrite it? - + + Import Theme + - - Export a theme - + + Delete Theme + - - - AmendThemeForm - - Open file - + + Error + - - - Ui_TopicsDialog - - Topic Maintenance - + + Edit Theme + - - - Ui_customEditDialog - - Clear edit area - + + Export Theme + - - - Ui_AmendThemeDialog - - Show Outline: - + + Theme Exists + - - - SongBookForm - - You need to type in a book name! - + + Save Theme - (%s) + - - - ImportWizardForm - - Open OpenSong Bible - + + Select Theme Import File + - - - Ui_MainWindow - - Look && &Feel - + + New Theme + - - - Ui_BibleImportWizard - - Ready. - + + Create a new theme. + - - - Ui_SongMaintenanceDialog - - Books/Hymnals - + + Edit a theme. + - - - Ui_AboutDialog - - Contribute - + + Delete a theme. + - - - Ui_AmendThemeDialog - - Gradient - + + Import a theme. + - - - AlertsTab - - Font Size: - + + Export a theme. + - - - Ui_OpenSongExportDialog - - Full Song List - + + &Edit Theme + - - - Ui_AmendThemeDialog - - Circular - + + &Delete Theme + - - + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + You are unable to delete the default theme. + + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Theme (*.*) + + + + + File is not a valid theme. +The content encoding is not UTF-8. + + + + + File is not a valid theme. + + + + + A theme with this name already exists. Would you like to overwrite it? + + + + + ThemesTab + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + + + + + Use the global theme, overriding any themes associated with either the service or the songs. + + + + + Themes + + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + &Service Level + + + + + &Global Level + + + + + VerseType + + + Verse + + + + + Chorus + + + + + Bridge + + + + + Pre-Chorus + + + + + Intro + + + + + Ending + + + + + Other + + + diff --git a/resources/i18n/openlp_en_GB.ts b/resources/i18n/openlp_en_GB.ts index 0f994c2e1..d78025446 100644 --- a/resources/i18n/openlp_en_GB.ts +++ b/resources/i18n/openlp_en_GB.ts @@ -1,4287 +1,3775 @@ - - - - BibleMediaItem + + + + AboutForm - - Quick - Quick - - - Ui_customEditDialog - - - Delete selected slide - Delete selected slide - - - BiblesTab - - - ( and ) - ( and ) - - - RemoteTab - - - Remotes - Remotes - - - Ui_EditSongDialog - - - &Remove - &Remove - - - Ui_AmendThemeDialog - - - Shadow Size: - Shadow Size: - - - Ui_OpenSongExportDialog - - - Close - Close - - - ThemeManager - - - Import Theme - Import Theme - - - Ui_AmendThemeDialog - - - Slide Transition - Slide Transition - - - SongMaintenanceForm - - - Are you sure you want to delete the selected book? - Are you sure you want to delete the selected book? - - - ThemesTab - - - Theme level - Theme level - - - BibleMediaItem - - - Bible - Bible - - - ServiceManager - - - Save Changes to Service? - Save Changes to Service? - - - SongUsagePlugin - - - &Delete recorded data - &Delete recorded data - - - Ui_OpenLPExportDialog - - - Song Title - Song Title - - - Ui_customEditDialog - - - Edit selected slide - Edit selected slide - - - SongMediaItem - - - CCLI Licence: - CCLI Licence: - - - Ui_SongUsageDeleteDialog - - - Audit Delete - Audit Delete - - - Ui_BibleImportWizard - - - Bible Import Wizard - Bible Import Wizard - - - Ui_customEditDialog - - - Edit All - Edit All - - - Ui_ServiceNoteEdit - - - Service Item Notes - Service Item Notes - - - SongMaintenanceForm - - - Couldn't save your author! - + + About OpenLP + About OpenLP - - - Ui_customEditDialog - - Clear - Clear - - - ThemesTab - - - Global theme - Global theme - - - SongUsagePlugin - - - Start/Stop live song usage recording - Start/Stop live song usage recording - - - MainWindow - - - The Main Display has been blanked out - The Main Display has been blanked out - - - Ui_OpenSongExportDialog - - - Lyrics - Lyrics - - - Ui_AlertDialog - - - Display - Display - - - Ui_customEditDialog - - - Delete - Delete - - - Ui_EditVerseDialog - - - Verse - Verse - - - SongMaintenanceForm - - - This author can't be deleted, they are currently assigned to at least one song! - - - - - ThemeManager - - - Create a new theme - Create a new theme - - - Ui_MainWindow - - - Open an existing service - Open an existing service - - - SlideController - - - Move to previous - Move to previous - - - SongsPlugin - - - &Song - &Song - - - Ui_PluginViewDialog - - - Plugin Details - Plugin Details - - - AlertsTab - - - pt - pt - - - Edit History: - Edit History: - - - Ui_MainWindow - - - &File - &File - - - SongMaintenanceForm - - - Couldn't add your book! - - - - - BiblesTab - - - verse per line - verse per line - - - Ui_customEditDialog - - - Theme: - Theme: - - - SongMaintenanceForm - - - Error - Error - - - Ui_BibleImportWizard - - - Bible: - Bible: - - - ImportWizardForm - - - You need to specify a file with books of the Bible to use in the import! - - - - - ThemeManager - - - Delete Theme - Delete Theme - - - SplashScreen - - - Splash Screen - Splash Screen - - - SongMediaItem - - - Song - Song - - - SongUsageDeleteForm - - - Delete Selected Audit Events? - - - - - Ui_OpenSongExportDialog - - - Song Title - Song Title - - - Ui_AmendThemeDialog - - - Bottom - Bottom - - - Ui_MainWindow - - - List the Plugins - List the Plugins - - - SongMaintenanceForm - - - No author selected! - - - - - SongUsagePlugin - - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - - - Ui_customEditDialog - - - Move slide Up 1 - Move slide Up 1 - - - SongsPlugin - - - OpenSong - OpenSong - - - AlertsManager - - - Alert message created and delayed - Alert message created and delayed - - - Ui_EditSongDialog - - - Alternative Title: - Alternative Title: - - - ServiceManager - - - Open Service - Open Service - - - BiblesTab - - - Display Style: - Display Style: - - - Ui_AmendThemeDialog - - - Image - Image - - - EditSongForm - - - You need to enter a song title. - You need to enter a song title. - - - ThemeManager - - - Error - Error - - - ImportWizardForm - - - Invalid Bible Location - Invalid Bible Location - - - ThemesTab - - - Global level - Global level - - - ThemeManager - - - Make Global - Make Global - - - Ui_MainWindow - - - &Service Manager - &Service Manager - - - Ui_OpenLPImportDialog - - - Author - Author - - - Ui_AmendThemeDialog - - - Height: - Height: - - - ThemeManager - - - Delete a theme - Delete a theme - - - Ui_BibleImportWizard - - - Crosswalk - Crosswalk - - - SongBookForm - - - Error - Error - - - Ui_AuthorsDialog - - - Last name: - Last name: - - - Ui_customEditDialog - - - Title: - Title: - - - ImportWizardForm - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - - - SongMediaItem - - - Maintain the lists of authors, topics and books - Maintain the lists of authors, topics and books - - - Ui_AlertEditDialog - - - Save - Save - - - EditCustomForm - - - You have unsaved data - You have unsaved data - - - Ui_AmendThemeDialog - - - Outline - Outline - - - BibleMediaItem - - - Text Search - Text Search - - - Ui_BibleImportWizard - - - CSV - CSV - - - SongUsagePlugin - - - Delete song usage to specified date - Delete song usage to specified date - - - Ui_SongUsageDetailDialog - - - Report Location - Report Location - - - Ui_BibleImportWizard - - - OpenSong - OpenSong - - - Ui_MainWindow - - - Open Service - Open Service - - - BibleMediaItem - - - Find: - Find: - - - ImageMediaItem - - - Select Image(s) - Select Image(s) - - - BibleMediaItem - - - Search Type: - Search Type: - - - Ui_MainWindow - - - Media Manager - Media Manager - - - Alt+F4 - Alt+F4 - - - MediaManagerItem - - - &Preview - &Preview - - - GeneralTab - - - CCLI Details - CCLI Details - - - BibleMediaItem - - - Bible not fully loaded - Bible not fully loaded - - - Ui_MainWindow - - - Toggle the visibility of the Preview Panel - Toggle the visibility of the Preview Panel - - - ImportWizardForm - - - Bible Exists - Bible Exists - - - Ui_MainWindow - - - &User Guide - &User Guide - - - SongUsageDeleteForm - - - Are you sure you want to delete selected Audit Data? - - - - - Ui_MainWindow - - - Set the interface language to English - Set the interface language to English - - - Ui_AmendThemeDialog - - - Main Font - Main Font - - - ImportWizardForm - - - Empty Copyright - Empty Copyright - - - CustomPlugin - - - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> - - - - - AuthorsForm - - - You need to type in the first name of the author. - You need to type in the first name of the author. - - - SongsTab - - - Display Verses on Live Tool bar: - Display Verses on Live Tool bar: - - - ServiceManager - - - Move to top - Move to top - - - ImageMediaItem - - - Override background - Override background - - - Ui_SongMaintenanceDialog - - - Edit - Edit - - - Ui_OpenSongExportDialog - - - Select All - Select All - - - ThemesTab - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - - - PresentationMediaItem - - - Presentation - Presentation - - - Ui_AmendThemeDialog - - - Solid Color - Solid Color - - - CustomTab - - - Custom - Custom - - - Ui_OpenLPImportDialog - - - Ready to import - Ready to import - - - MainWindow - - - OpenLP version %s has been updated to version %s - -You can obtain the latest version from http://openlp.org - OpenLP version %s has been updated to version %s - -You can obtain the latest version from http://openlp.org - - - Ui_BibleImportWizard - - - File Location: - File Location: - - - SlideController - - - Go to Verse - Go to Verse - - - Ui_MainWindow - - - &Import - &Import - - - Quit OpenLP - Quit OpenLP - - - Ui_BibleImportWizard - - - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - - - SongMaintenanceForm - - - Couldn't add your topic! - - - - - ImportWizardForm - - - Empty Version Name - Empty Version Name - - - Ui_MainWindow - - - &Preview Panel - &Preview Panel - - - SlideController - - - Start continuous loop - Start continuous loop - - - ServiceManager - - - Move down - Move down - - - GeneralTab - - - primary - primary - - - Ui_EditSongDialog - - - Add a Theme - Add a Theme - - - Ui_MainWindow - - - &New - &New - - - Ui_customEditDialog - - - Credits: - Credits: - - - SlideController - - - Live - Live - - - GeneralTab - - - Show blank screen warning - Show blank screen warning - - - BiblesTab - - - continuous - continuous - - - Ui_EditVerseDialog - - - Number - Number - - - GeneralTab - - - Application Startup - Application Startup - - - Ui_AmendThemeDialog - - - Use Default Location: - Use Default Location: - - - Ui_OpenSongImportDialog - - - Import - Import - - - Ui_AmendThemeDialog - - - Other Options - Other Options - - - Ui_EditSongDialog - - - Verse Order: - Verse Order: - - - Ui_SongUsageDetailDialog - - - ASelect Date Range - - - - - Ui_MainWindow - - - Default Theme: - Default Theme: - - - Toggle Preview Panel - Toggle Preview Panel - - - SongMediaItem - - - Lyrics - Lyrics - - - Ui_OpenLPImportDialog - - - Progress: - Progress: - - - Ui_AmendThemeDialog - - - Shadow - Shadow - - - GeneralTab - - - Select monitor for output display: - Select monitor for output display: - - - Ui_MainWindow - - - &Settings - &Settings - - - Ui_AmendThemeDialog - - - Italics - Italics - - - ServiceManager - - - Create a new service - Create a new service - - - Ui_AmendThemeDialog - - - Background: - Background: - - - Ui_OpenLPImportDialog - - - openlp.org Song Importer - openlp.org Song Importer - - - Ui_BibleImportWizard - - - Copyright: - Copyright: - - - ThemesTab - - - Service level - Service level - - - BiblesTab - - - [ and ] - [ and ] - - - Ui_BibleImportWizard - - - Verse Location: - Verse Location: - - - MediaManagerItem - - - You must select one or more items - You must select one or more items - - - GeneralTab - - - Application Settings - Application Settings - - - ServiceManager - - - Save this service - Save this service - - - ImportWizardForm - - - Open Books CSV file - Open Books CSV file - - - GeneralTab - - - SongSelect Username: - SongSelect Username: - - - Ui_AmendThemeDialog - - - X Position: - X Position: - - - BibleMediaItem - - - No matching book could be found in this Bible. - No matching book could be found in this Bible. - - - Ui_BibleImportWizard - - - Server: - Server: - - - SongMaintenanceForm - - - Couldn't save your book! - - - - Ui_EditVerseDialog - - - Ending - Ending - - - CustomTab - - - Display Footer: - Display Footer: - - - ImportWizardForm - - - Invalid OpenSong Bible - Invalid OpenSong Bible - - - GeneralTab - - - CCLI Number: - CCLI Number: - - - Ui_AmendThemeDialog - - - Center - Center - - - ServiceManager - - - Theme: - Theme: - - - Ui_MainWindow - - - &Live - &Live - - - Ui_AmendThemeDialog - - - <Color2> - <Color2> - - - Ui_MainWindow - - - English - English - - - ImageMediaItem - - - You must select one or more items - You must select one or more items - - - Ui_AuthorsDialog - - - First name: - First name: - - - Ui_OpenLPExportDialog - - - Select openlp.org export filename: - Select openlp.org export filename: - - - Ui_BibleImportWizard - - - Permission: - Permission: - - - Ui_OpenSongImportDialog - - - Close - Close - - - Ui_AmendThemeDialog - - - Opaque - Opaque - - - SongMaintenanceForm - - - This book can't be deleted, it is currently assigned to at least one song! - - - - - ImportWizardForm - - - Your Bible import failed. - Your Bible import failed. - - - SlideController - - - Start playing media - Start playing media - - - SongMediaItem - - - Type: - Type: - - - Ui_AboutDialog - - - Close - Close - - - TopicsForm - - - You need to type in a topic name! - - - - - Ui_OpenSongExportDialog - - - Song Export List - Song Export List - - - BibleMediaItem - - - Dual: - Dual: - - - ImageTab - - - sec - sec - - - ServiceManager - - - Delete From Service - Delete From Service - - - GeneralTab - - - Automatically open the last service - Automatically open the last service - - - Ui_OpenLPImportDialog - - - Song Import List - Song Import List - - - Ui_OpenSongExportDialog - - - Author - Author - - - Ui_AmendThemeDialog - - - Outline Color: - Outline Color: - - - Ui_BibleImportWizard - - - Select Import Source - Select Import Source - - - Ui_MainWindow - - - F9 - F9 - - - F8 - F8 - - - ServiceManager - - - &Change Item Theme - &Change Item Theme - - - Ui_OpenSongImportDialog - - - OpenSong Folder: - OpenSong Folder: - - - Ui_OpenLPImportDialog - - - Import File Song List - Import File Song List - - - Ui_customEditDialog - - - Edit Custom Slides - Edit Custom Slides - - - Ui_BibleImportWizard - - - Set up the Bible's license details. - Set up the Bible's license details. - - - Ui_AmendThemeDialog - - - Alignment - Alignment - - - SongMaintenanceForm - - - Delete Book - Delete Book - - - ThemeManager - - - Edit a theme - Edit a theme - - - Ui_BibleImportWizard - - - BibleGateway - BibleGateway - - - GeneralTab - - - Preview Next Song from Service Manager - Preview Next Song from Service Manager - - - Ui_EditSongDialog - - - Title && Lyrics - Title && Lyrics - - - SongMaintenanceForm - - - No book selected! - - - - - SlideController - - - Move to live - Move to live - - - Ui_EditVerseDialog - - - Other - Other - - - Ui_EditSongDialog - - - Theme - Theme - - - ServiceManager - - - Save Service - Save Service - - - Ui_MainWindow - - - Save the current service to disk - Save the current service to disk - - - BibleMediaItem - - - Chapter: - Chapter: - - - Search - Search - - - PresentationTab - - - Available Controllers - Available Controllers - - - ImportWizardForm - - - Open Verses CSV file - Open Verses CSV file - - - TopicsForm - - - Error - Error - - - RemoteTab - - - Remotes Receiver Port - Remotes Receiver Port - - - Ui_MainWindow - - - &View - &View - - - Ui_AmendThemeDialog - - - Normal - Normal - - - Ui_OpenLPExportDialog - - - Close - Close - - - Ui_BibleImportWizard - - - Username: - Username: - - - ThemeManager - - - Edit Theme - Edit Theme - - - SlideController - - - Preview - Preview - - - Ui_AlertDialog - - - Alert Message - Alert Message - - - ImportWizardForm - - - Finished import. - Finished import. - - - You need to specify a file of Bible verses to import! - You need to specify a file of Bible verses to import! - - - AlertsTab - - - Location: - Location: - - - Ui_EditSongDialog - - - Authors, Topics && Book - Authors, Topics && Book - - - EditSongForm - - - You need to enter some verses. - You need to enter some verses. - - - Ui_BibleImportWizard - - - Download Options - Download Options - - - BiblePlugin - - - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - - - Ui_EditSongDialog - - - Copyright Information - Copyright Information - - - Ui_MainWindow - - - &Export - &Export - - - Ui_AmendThemeDialog - - - Bold - Bold - - - SongsPlugin - - - Export songs in OpenLP 2.0 format - Export songs in OpenLP 2.0 format - - - MediaManagerItem - - - Load a new - Load a new - - - AlertEditForm - - - Missing data - Missing data - - - SongsPlugin - - - <b>Song Plugin</b> <br>This plugin allows Songs to be managed and displayed.<br> - <b>Song Plugin</b> <br>This plugin allows Songs to be managed and displayed.<br> - - - Ui_AmendThemeDialog - - - Footer Font - Footer Font - - - EditSongForm - - - Invalid verse entry - vX - Invalid verse entry - vX - - - MediaManagerItem - - - Delete the selected item - Delete the selected item - - - Ui_OpenLPExportDialog - - - Export - Export - - - Ui_BibleImportWizard - - - Location: - Location: - - - BibleMediaItem - - - Keep - Keep - - - SongUsagePlugin - - - Generate report on Song Usage - Generate report on Song Usage - - - Ui_EditSongDialog - - - Topic - Topic - - - Ui_MainWindow - - - &Open - &Open - - - AuthorsForm - - - You haven't set a display name for the author, would you like me to combine the first and last names for you? - You haven't set a display name for the author, would you like me to combine the first and last names for you? - - - AmendThemeForm - - - Slide Height is %s rows - Slide Height is %s rows - - - Ui_EditVerseDialog - - - Pre-Chorus - Pre-Chorus - - - Ui_EditSongDialog - - - Lyrics: - Lyrics: - - - Ui_AboutDialog - - - Project Lead - Raoul "superfly" Snyman - -Developers - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Testers - Wesley "wrst" Stout - Project Lead - Raoul "superfly" Snyman - -Developers - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Testers - Wesley "wrst" Stout - - - SongMediaItem - - - Titles - - - - - Ui_OpenLPExportDialog - - - Lyrics - Lyrics - - - PresentationMediaItem - - - Present using: - Present using: - - - SongMediaItem - - - Clear - Clear - - - ServiceManager - - - &Live Verse - &Live Verse - - - Ui_OpenSongImportDialog - - - Progress: - Progress: - - - Ui_MainWindow - - - Toggle Theme Manager - Toggle Theme Manager - - - Ui_AlertDialog - - - Alert Text: - Alert Text: - - - Ui_EditSongDialog - - - Edit - Edit - - - AlertsTab - - - Font Color: - Font Color: - - - Ui_AmendThemeDialog - - - Theme Maintenance - Theme Maintenance - - - CustomTab - - - Custom Display - Custom Display - - - Ui_OpenSongExportDialog - - - Title - Title - - - Ui_AmendThemeDialog - - - <Color1> - <Color1> - - - Ui_EditSongDialog - - - Authors - Authors - - - ThemeManager - - - Export Theme - Export Theme - - - ServiceManager - - - (N) - - - - - Ui_SongBookDialog - - - Name: - Name: - - - Ui_AuthorsDialog - - - Author Maintenance - Author Maintenance - - - Ui_AmendThemeDialog - - - Font Footer - Font Footer - - - BiblesTab - - - Verse Display - Verse Display - - - Ui_MainWindow - - - &Options - &Options - - - BibleMediaItem - - - Results: - Results: - - - Ui_OpenLPExportDialog - - - Full Song List - Full Song List - - - SlideController - - - Move to last - Move to last - - - Ui_OpenLPExportDialog - - - Progress: - - - - - Ui_SongMaintenanceDialog - - - Add - Add - - - SongMaintenanceForm - - - Are you sure you want to delete the selected author? - - - - - SongUsagePlugin - - - Song Usage Status - Song Usage Status - - - BibleMediaItem - - - Verse Search - Verse Search - - - Ui_SongBookDialog - - - Edit Book - Edit Book - - - EditSongForm - - - Save && Preview - Save && Preview - - - Ui_SongBookDialog - - - Publisher: - Publisher: - - - Ui_AmendThemeDialog - - - Font Weight: - Font Weight: - - - Ui_BibleImportWizard - - - Bible Filename: - Bible Filename: - - - Ui_AmendThemeDialog - - - Transparent - Transparent - - - SongMediaItem - - - Search - Search - - - Ui_BibleImportWizard - - - Format: - Format: - - - Ui_AmendThemeDialog - - - Background - Background - - - Ui_BibleImportWizard - - - Importing - Importing - - - Ui_customEditDialog - - - Edit all slides - Edit all slides - - - SongsTab - - - Enable search as you type: - Enable search as you type: - - - Ui_MainWindow - - - Ctrl+S - Ctrl+S - - - SongMediaItem - - - Authors - Authors - - - Ui_PluginViewDialog - - - Active - Active - - - SongMaintenanceForm - - - Couldn't save your topic! - - - - - Ui_MainWindow - - - Ctrl+O - Ctrl+O - - - Ctrl+N - Ctrl+N - - - SongMaintenanceForm - - - Couldn't add your author! - - - - - Ui_AlertEditDialog - - - Edit - Edit - - - Ui_EditSongDialog - - - Song Editor - Song Editor - - - AlertsTab - - - Font - Font - - - SlideController - - - Edit and re-preview Song - Edit and re-preview Song - - - Delay between slides in seconds - Delay between slides in seconds - - - MediaManagerItem - - - &Edit - &Edit - - - Ui_AmendThemeDialog - - - Vertical - Vertical - - - Width: - Width: - - - ThemeManager - - - You are unable to delete the default theme! - - - - - ThemesTab - - - Use the global theme, overriding any themes associated with either the service or the songs. - Use the global theme, overriding any themes associated with either the service or the songs. - - - BibleMediaItem - - - Version: - Version: - - - Ui_AboutDialog - - - OpenLP <version> build <revision> - Open Source Lyrics Projection + + OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version> build <revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - SongsPlugin - - - OpenLP 2.0 - OpenLP 2.0 - - - ServiceManager - - - New Service - New Service - - - Ui_TopicsDialog - - - Topic name: - Topic name: - - - ThemeManager - - - File is not a valid theme! - - - - - Ui_BibleImportWizard - - - License Details - License Details - - - Ui_AboutDialog - - - License - License - - - Ui_EditSongDialog - - - R&emove - R&emove - - - Ui_AmendThemeDialog - - - Middle - Middle - - - Ui_customEditDialog - - - Save - Save - - - AlertEditForm - - - Item selected to Edit - Item selected to Edit - - - BibleMediaItem - - - From: - From: - - - Ui_AmendThemeDialog - - - Shadow Color: - Shadow Color: - - - ServiceManager - - - &Notes - &Notes - - - Ui_MainWindow - - - E&xit - E&xit - - - Ui_OpenLPImportDialog - - - Close - Close - - - MainWindow - - - OpenLP Version Updated - OpenLP Version Updated - - - Ui_customEditDialog - - - Replace edited slide - Replace edited slide - - - Add new slide at bottom - Add new slide at bottom - - - EditCustomForm - - - You need to enter a title - You need to enter a title - - - ThemeManager - - - Theme Exists - Theme Exists - - - Ui_MainWindow - - - &Help - &Help - - - Ui_EditVerseDialog - - - Bridge - Bridge - - - Ui_OpenSongExportDialog - - - OpenSong Song Exporter - OpenSong Song Exporter - - - Ui_AmendThemeDialog - - - Vertical Align: - Vertical Align: - - - TestMediaManager - - - Item2 - + - - Item1 - + + About + About - - - Ui_AmendThemeDialog - - Top - Top - - - BiblesTab + + Project Lead + Raoul "superfly" Snyman + +Developers + Tim "TRB143" Bentley + Jonathan "gushie" Corwin + Michael "cocooncrash" Gorven + Scott "sguerrieri" Guerrieri + Raoul "superfly" Snyman + Martin "mijiti" Thompson + Jon "Meths" Tibble + +Contributors + Meinert "m2j" Jordan + Christian "crichter" Richter + Maikel Stuivenberg + Carsten "catini" Tingaard + +Testers + Philip "Phill" Ridout + Wesley "wrst" Stout (lead) + +Packagers + Thomas "tabthorpe" Abthorpe (FreeBSD) + Tim "TRB143" Bentley (Fedora) + Michael "cocooncrash" Gorven (Ubuntu) + Matthias "matthub" Hub (Mac OS X) + Raoul "superfly" Snyman (Windows) + + + - - Display Dual Bible Verses - Display Dual Bible Verses - - - Ui_MainWindow + + Credits + Credits + - - Toggle Service Manager - Toggle Service Manager - - - MediaManagerItem + + Copyright © 2004-2010 Raoul Snyman +Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard + +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. + + +GNU GENERAL PUBLIC LICENSE +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification follow. + +GNU GENERAL PUBLIC LICENSE +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: + +a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. + +b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. + +c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. + +3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: + +a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. + +This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version', you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. + +<one line to give the program's name and a brief idea of what it does.> +Copyright (C) <year> <name of author> + +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it starts in an interactive mode: + +Gnomovision version 69, Copyright (C) year name of author +Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type "show w". +This is free software, and you are welcome to redistribute it under certain conditions; type "show c" for details. + +The hypothetical commands "show w" and "show c" should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than "show w" and "show c"; they could even be mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: + +Yoyodyne, Inc., hereby disclaims all copyright interest in the program "Gnomovision" (which makes passes at compilers) written by James Hacker. + +<signature of Ty Coon>, 1 April 1989 +Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. + + - - &Add to Service - &Add to Service - - + + License + License + + + + Contribute + Contribute + + + + Close + Close + + + + build %s + + + + + AlertsPlugin + + + &Alert + &Alert + + + + <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen + <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen + + + + Show an alert message. + + + + + AlertsPlugin.AlertForm + + + Alert Message + Alert Message + + + + Alert &text: + + + + + &Parameter(s): + + + + + &New + &New + + + + &Save + &Save + + + + &Delete + + + + + Displ&ay + + + + + Display && Cl&ose + + + + + &Close + + + + + New Alert + + + + + You haven't specified any text for your alert. Please type in some text before clicking New. + + + + + AlertsPlugin.AlertsManager + + + Alert message created and displayed. + + + + + AlertsPlugin.AlertsTab + + + Alerts + Alerts + + + + Font + Font + + + + Font Name: + Font Name: + + + + Font Color: + Font Color: + + + + Background Color: + Background Color: + + + + Font Size: + Font Size: + + + + pt + pt + + + + Alert timeout: + Alert timeout: + + + + s + s + + + + Location: + Location: + + + + Preview + Preview + + + + openlp.org + openlp.org + + + + Top + Top + + + + Middle + Middle + + + + Bottom + Bottom + + + AmendThemeForm - - First Color: - First Color: - - - ThemesTab - - - Song level - Song level - - - alertsPlugin - - - Show an alert message - Show an alert message - - - Ui_MainWindow - - - Ctrl+F1 - Ctrl+F1 - - - Save the current service under a new name - Save the current service under a new name - - - Ui_OpenLPExportDialog - - - Remove Selected - Remove Selected - - - ThemeManager - - - Delete theme - Delete theme - - - ImageTab - - - Image Settings - Image Settings - - - Ui_OpenSongImportDialog - - - OpenSong Song Importer - OpenSong Song Importer - - - SongUsagePlugin - - - &Extract recorded data - &Extract recorded data - - - AlertsTab - - - Font Name: - Font Name: - - - Ui_MainWindow - - - &Web Site - &Web Site - - - MediaManagerItem - - - Send the selected item live - Send the selected item live - - - Ui_MainWindow - - - M&ode - M&ode - - - Translate the interface to your language - Translate the interface to your language - - - Service Manager - Service Manager - - - CustomMediaItem - - - Custom - Custom - - - ImageMediaItem - - - No items selected... - No items selected... - - - Ui_BibleImportWizard - - - OSIS - OSIS - - - SongsPlugin - - - openlp.org 1.0 - openlp.org 1.0 - - - Ui_MainWindow - - - &Theme - &Theme - - - Ui_EditVerseDialog - - - Edit Verse - Edit Verse - - - Ui_MainWindow - - - &Language - &Language - - - ServiceManager - - - Move to end - Move to end - - - Your service is unsaved, do you want to save those changes before creating a new one ? - Your service is unsaved, do you want to save those changes before creating a new one ? - - - Ui_OpenSongExportDialog - - - Remove Selected - Remove Selected - - - SongMediaItem - - - Search: - Search: - - - MainWindow - - - Save Changes to Service? - Save Changes to Service? - - - Your service has changed, do you want to save those changes? - Your service has changed, do you want to save those changes? - - - EditSongForm - - - Invalid verse entry - values must be Numeric, I,B,C,T,P,E,O - Invalid verse entry - values must be Numeric, I,B,C,T,P,E,O - - - Ui_EditSongDialog - - - &Add to Song - &Add to Song - - - Ui_MainWindow - - - &About - &About - - - BiblesTab - - - Only show new chapter numbers - Only show new chapter numbers - - - ImportWizardForm - - - You need to specify a version name for your Bible! - You need to specify a version name for your Bible! - - - Ui_AlertEditDialog - - - Delete - Delete - - - EditCustomForm - - - Error - Error - - - ThemesTab - - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - - - SongMaintenanceForm - - - This topic can't be deleted, it is currently assigned to at least one song! - + + Theme Maintenance + Theme Maintenance - - - AlertEditForm - - Item selected to Add - Item selected to Add - - - Ui_AmendThemeDialog + + &Visibility: + + - - Right - Right - - - ThemeManager + + Opaque + Opaque + - - Save Theme - (%s) - Save Theme - (%s) - - - ImageMediaItem + + Transparent + Transparent + - - Allow background of live slide to be overridden - Allow background of live slide to be overridden - - - MediaManagerItem + + Type: + Type: + - - Add the selected item(s) to the service - Add the selected item(s) to the service - - - AuthorsForm + + Solid Color + Solid Color + - - Error - Error - - - BibleMediaItem + + Gradient + Gradient + - - Book: - Book: - - - Ui_AmendThemeDialog + + Image + Image + - - Font Color: - Font Color: - - - Ui_OpenLPImportDialog + + Image: + Image: + - - Select openlp.org songfile to import: - Select openlp.org songfile to import: - - - Ui_SettingsDialog + + Gradient: + + - - Settings - Settings - - - BiblesTab + + Horizontal + Horizontal + - - Layout Style: - Layout Style: - - - MediaManagerItem + + Vertical + Vertical + - - Edit the selected - Edit the selected - - - SlideController + + Circular + + - - Move to next - Move to next - - - Ui_MainWindow + + &Background + + - - &Plugin List - &Plugin List - - + + Main Font + Main Font + + + + Font: + Font: + + + + Color: + + + + + Size: + Size: + + + + pt + pt + + + + Wrap indentation: + + + + + Adjust line spacing: + + + + + Normal + Normal + + + + Bold + Bold + + + + Italics + Italics + + + + Bold/Italics + Bold/Italics + + + + Style: + + + + + Display Location + Display Location + + + + X position: + + + + + Y position: + + + + + Width: + Width: + + + + Height: + Height: + + + + px + px + + + + &Main Font + + + + + Footer Font + Footer Font + + + + &Footer Font + + + + + Outline + Outline + + + + Outline size: + + + + + Outline color: + + + + + Show outline: + + + + + Shadow + Shadow + + + + Shadow size: + + + + + Shadow color: + + + + + Show shadow: + + + + + Alignment + Alignment + + + + Horizontal align: + + + + + Left + Left + + + + Right + Right + + + + Center + Center + + + + Vertical align: + + + + + Top + Top + + + + Middle + Middle + + + + Bottom + Bottom + + + + Slide Transition + Slide Transition + + + + &Other Options + + + + + Preview + Preview + + + + All Files + + + + + Select Image + + + + + First color: + + + + + Second color: + + + + + Slide height is %s rows. + + + + + Theme &name: + + + + + Use default location + + + + + Transition active + + + + + BibleDB + + + Book not found + + + + BiblePlugin - - &Bible - &Bible - - - Ui_BibleImportWizard - - - Web Download - Web Download - - - Ui_AmendThemeDialog - - - Horizontal - Horizontal - - - ImportWizardForm - - - Open OSIS file - Open OSIS file - - - Ui_AmendThemeDialog - - - Circular - + + <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. + <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - - pt - pt - - - Ui_MainWindow - - - &Add Tool... - &Add Tool... - - - SongMaintenanceForm - - - Delete Topic - Delete Topic - - - ServiceManager - - - Move up - Move up - - - Ui_OpenLPImportDialog - - - Lyrics - Lyrics - - - BiblesTab - - - No brackets - No brackets - - - Ui_AlertEditDialog - - - Maintain Alerts - Maintain Alerts - - - Ui_AmendThemeDialog - - - px - px - - - ServiceManager - - - Select a theme for the service - Select a theme for the service - - - ThemesTab - - - Themes - Themes - - - ServiceManager - - - Move to bottom - Move to bottom - - - Ui_PluginViewDialog - - - Status: - Status: - - - Ui_EditSongDialog - - - CCLI Number: - CCLI Number: - - - ImportWizardForm - - - This Bible already exists! Please import a different Bible or first delete the existing one. - + + &Bible + &Bible - - - Ui_MainWindow + + + BiblesPlugin,BiblesTab - - &Translate - &Translate - - - AlertEditForm - - - Please Save or Clear seletced item - + + Bibles + Bibles - - - BiblesTab + + + BiblesPlugin.BiblesTab - - Bibles - Bibles - - - Ui_SongMaintenanceDialog + + Verse Display + Verse Display + - - Authors - Authors - - - SongUsageDetailForm + + Only show new chapter numbers + Only show new chapter numbers + - - Output File Location - Output File Location - - - BiblesTab + + Layout style: + + - - { and } - { and } - - + + Display style: + + + + + Bible theme: + + + + + Verse Per Slide + + + + + Verse Per Line + + + + + Continuous + + + + + No Brackets + + + + + ( And ) + + + + + { And } + + + + + [ And ] + + + + + Note: +Changes do not affect verses already in the service. + + + + + Display dual Bible verses + + + + + BiblesPlugin.ImportWizardForm + + + Bible Import Wizard + Bible Import Wizard + + + + Welcome to the Bible Import Wizard + Welcome to the Bible Import Wizard + + + + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + + + + Select Import Source + Select Import Source + + + + Select the import format, and where to import from. + Select the import format, and where to import from. + + + + Format: + Format: + + + + OSIS + OSIS + + + + CSV + CSV + + + + OpenSong + OpenSong + + + + Web Download + Web Download + + + + File location: + + + + + Books location: + + + + + Verse location: + + + + + Bible filename: + + + + + Location: + Location: + + + + Crosswalk + Crosswalk + + + + BibleGateway + BibleGateway + + + + Bible: + Bible: + + + + Download Options + Download Options + + + + Server: + Server: + + + + Username: + Username: + + + + Password: + Password: + + + + Proxy Server (Optional) + Proxy Server (Optional) + + + + License Details + License Details + + + + Set up the Bible's license details. + Set up the Bible's license details. + + + + Version name: + + + + + Copyright: + Copyright: + + + + Permission: + Permission: + + + + Importing + Importing + + + + Please wait while your Bible is imported. + Please wait while your Bible is imported. + + + + Ready. + Ready. + + + + Invalid Bible Location + Invalid Bible Location + + + + You need to specify a file to import your Bible from. + + + + + Invalid Books File + Invalid Books File + + + + You need to specify a file with books of the Bible to use in the import. + + + + + Invalid Verse File + Invalid Verse File + + + + You need to specify a file of Bible verses to import. + + + + + Invalid OpenSong Bible + Invalid OpenSong Bible + + + + You need to specify an OpenSong Bible file to import. + + + + + Empty Version Name + Empty Version Name + + + + You need to specify a version name for your Bible. + + + + + Empty Copyright + Empty Copyright + + + + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + + + + Bible Exists + Bible Exists + + + + This Bible already exists! Please import a different Bible or first delete the existing one. + + + + + Open OSIS File + + + + + Open Books CSV File + + + + + Open Verses CSV File + + + + + Open OpenSong Bible + Open OpenSong Bible + + + + Starting import... + Starting import... + + + + Finished import. + Finished import. + + + + Your Bible import failed. + Your Bible import failed. + + + + BiblesPlugin.MediaItem + + + Bible + Bible + + + + Quick + Quick + + + + Advanced + Advanced + + + + Version: + Version: + + + + Dual: + Dual: + + + + Search type: + + + + + Find: + Find: + + + + Search + Search + + + + Results: + Results: + + + + Book: + Book: + + + + Chapter: + Chapter: + + + + Verse: + Verse: + + + + From: + From: + + + + To: + To: + + + + Verse Search + Verse Search + + + + Text Search + Text Search + + + + Clear + Clear + + + + Keep + Keep + + + + No Book Found + No Book Found + + + + No matching book could be found in this Bible. + No matching book could be found in this Bible. + + + + etc + + + + + Bible not fully loaded. + + + + + BiblesPlugin.Opensong + + + Importing + Importing + + + + CustomPlugin + + + <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> + + + + + CustomPlugin.CustomTab + + + Custom + Custom + + + + Custom Display + Custom Display + + + + Display footer + + + + + CustomPlugin.EditCustomForm + + + Edit Custom Slides + Edit Custom Slides + + + + Move slide up once position. + + + + + Move slide down one position. + + + + + &Title: + + + + + Add New + Add New + + + + Add a new slide at bottom. + + + + + Edit + Edit + + + + Edit the selected slide. + + + + + Edit All + Edit All + + + + Edit all the slides at once. + + + + + Save + Save + + + + Save the slide currently being edited. + + + + + Delete + Delete + + + + Delete the selected slide. + + + + + Clear + Clear + + + + Clear edit area + Clear edit area + + + + Split Slide + + + + + Split a slide into two by inserting a slide splitter. + + + + + The&me: + + + + + &Credits: + + + + + Save && Preview + Save && Preview + + + + Error + Error + + + + You need to type in a title. + + + + + You need to add at least one slide + + + + + You have one or more unsaved slides, please either save your slide(s) or clear your changes. + + + + + CustomPlugin.MediaItem + + + Custom + Custom + + + + You haven't selected an item to edit. + + + + + You haven't selected an item to delete. + + + + + DisplayTab + + + Displays + + + + + Default Settings + + + + + X: + + + + + Y: + + + + + Height: + Height: + + + + Width: + Width: + + + + Custom Settings + + + + + Width + + + + + Override display settings + + + + GeneralTab - - Prompt to save Service before starting New - Prompt to save Service before starting New - - - ImportWizardForm - - - Starting import... - Starting import... - - - BiblesTab - - - Note: -Changes don't affect verses already in the service - Note: -Changes don't affect verses already in the service - - - Ui_EditVerseDialog - - - Intro - Intro - - - ServiceManager - - - Move up order - Move up order - - - PresentationTab - - - available - available - - - ThemeManager - - - default - default - - - SongMaintenanceForm - - - Delete Author - Delete Author - - - Ui_AmendThemeDialog - - - Display Location - Display Location - - - Ui_PluginViewDialog - - - Version: - Version: - - - Ui_AlertEditDialog - - - Add - Add - - - GeneralTab - - - General - General - - - Ui_AmendThemeDialog - - - Y Position: - Y Position: - - - ServiceManager - - - Move down order - Move down order - - - BiblesTab - - - verse per slide - verse per slide - - - Ui_AmendThemeDialog - - - Show Shadow: - Show Shadow: - - - AlertsTab - - - Preview - Preview - - - alertsPlugin - - - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - - - GeneralTab - - - Show the splash screen - Show the splash screen - - - Ui_MainWindow - - - New Service - New Service - - - SlideController - - - Move to first - Move to first - - - Ui_MainWindow - - - &Online Help - &Online Help - - - SlideController - - - Blank Screen - Blank Screen - - - Ui_MainWindow - - - Save Service - Save Service - - - Save &As... - Save &As... - - - Toggle the visibility of the Media Manager - Toggle the visibility of the Media Manager - - - BibleMediaItem - - - No Book Found - No Book Found - - - Ui_EditSongDialog - - - Add - Add - - - alertsPlugin - - - &Alert - &Alert - - - BibleMediaItem - - - Advanced - Advanced - - - ImageMediaItem - - - Image(s) - Image(s) - - - Ui_MainWindow - - - F11 - F11 - - - F10 - F10 - - - F12 - F12 - - - Ui_BibleImportWizard - - - Select the import format, and where to import from. - Select the import format, and where to import from. - - - Ui_MainWindow - - - Alt+F7 - Alt+F7 - - - Add an application to the list of tools - Add an application to the list of tools - - - MediaPlugin - - - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - - - BiblesTab - - - Bible Theme: - Bible Theme: - - - SongsPlugin - - - Export songs in openlp.org 1.0 format - Export songs in openlp.org 1.0 format - - - Ui_MainWindow - - - Theme Manager - Theme Manager - - - AlertsTab - - - Alerts - Alerts - - - Ui_customEditDialog - - - Move slide down 1 - Move slide down 1 - - - Ui_AmendThemeDialog - - - Font: - Font: - - - ServiceManager - - - Load an existing service - Load an existing service - - - Ui_MainWindow - - - Toggle the visibility of the Theme Manager - Toggle the visibility of the Theme Manager - - - PresentationTab - - - Presentations - Presentations - - - SplashScreen - - - Starting - Starting - - - ImageTab - - - Slide Loop Delay: - Slide Loop Delay: - - - SlideController - - - Verse - Verse - - - AlertsTab - - - Alert timeout: - Alert timeout: - - - Ui_MainWindow - - - &Preview Pane - &Preview Pane - - - MediaManagerItem - - - Add a new - + + CCLI Details + CCLI Details - - - ThemeManager - - Select Theme Import File - Select Theme Import File - - - New Theme - New Theme - - - MediaMediaItem - - - Media - Media - - - Ui_AmendThemeDialog - - - Preview - Preview - - - Outline Size: - Outline Size: - - - Ui_OpenSongExportDialog - - - Progress: - Progress: - - - AmendThemeForm - - - Second Color: - Second Color: - - - Ui_EditSongDialog - - - Theme, Copyright Info && Comments - Theme, Copyright Info && Comments - - - Ui_AboutDialog - - - Credits - Credits - - - BibleMediaItem - - - To: - To: - - - Ui_EditSongDialog - - - Song Book - Song Book - - - alertsPlugin - - - F7 - F7 - - - Ui_OpenLPExportDialog - - - Author - Author - - - Ui_AmendThemeDialog - - - Wrap Indentation - Wrap Indentation - - - ThemeManager - - - Import a theme - Import a theme - - - PresentationPlugin - - - <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - + + primary + primary - - - ImageMediaItem - - Image - Image - - - BibleMediaItem + + Show blank screen warning + Show blank screen warning + - - Clear - Clear - - - Ui_MainWindow + + Application Startup + Application Startup + - - Save Service As - Save Service As - - - Ui_AlertDialog + + Select monitor for output display: + Select monitor for output display: + - - Cancel - Cancel - - - Ui_OpenLPImportDialog + + Application Settings + Application Settings + - - Import - Import - - - Ui_EditVerseDialog + + SongSelect Username: + SongSelect Username: + - - Chorus - Chorus - - - Ui_EditSongDialog + + CCLI Number: + CCLI Number: + - - Edit All - Edit All - - - AuthorsForm + + Automatically open the last service + Automatically open the last service + - - You need to type in the last name of the author. - You need to type in the last name of the author. - - - SongsTab + + Preview Next Song from Service Manager + Preview Next Song from Service Manager + - - Songs Mode - Songs Mode - - - Ui_AmendThemeDialog + + Prompt to save Service before starting New + Prompt to save Service before starting New + - - Left - Left - - - RemotesPlugin + + General + General + - - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer.<br>The Primary use for this would be to send alerts from a creche - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer.<br>The Primary use for this would be to send alerts from a creche - - - ImageTab + + Show the splash screen + Show the splash screen + - - Images - Images - - - BibleMediaItem + + Screen + Screen + - - Verse: - Verse: - - - Ui_OpenLPExportDialog + + Monitors + Monitors + - - openlp.org Song Exporter - openlp.org Song Exporter + + SongSelect Password: + SongSelect Password: + - - Song Export List - Song Export List - - - ThemeManager - - - Export theme - Export theme - - - Ui_SongMaintenanceDialog - - - Delete - Delete - - - Ui_AmendThemeDialog - - - Theme Name: - Theme Name: - - - Ui_AboutDialog - - - About OpenLP - About OpenLP - - - Ui_MainWindow - - - Toggle the visibility of the Service Manager - Toggle the visibility of the Service Manager - - - PresentationMediaItem - - - A presentation with that filename already exists. - A presentation with that filename already exists. - - - AlertsTab - - - openlp.org - openlp.org - - - ImportWizardForm - - - Invalid Books File - Invalid Books File - - - Ui_OpenLPImportDialog - - - Song Title - Song Title - - - MediaManagerItem - - - &Show Live - &Show Live - - - AlertsTab - - - Keep History: - Keep History: - - - Ui_AmendThemeDialog - - - Image: - Image: - - - Ui_customEditDialog - - - Set Theme for Slides - Set Theme for Slides - - - Ui_MainWindow - - - More information about OpenLP - More information about OpenLP - - - AlertsTab - - - Background Color: - Background Color: - - - SongMaintenanceForm - - - No topic selected! - No topic selected! - - - Ui_MainWindow - - - &Media Manager - &Media Manager - - - &Tools - &Tools - - - AmendThemeForm - - - Background Color: - Background Color: - - - Ui_EditSongDialog - - - A&dd to Song - A&dd to Song - - - Title: - Title: - - - GeneralTab - - - Screen - Screen - - - AlertsTab - - - s - s - - + + Display if a single screen + + + + ImagePlugin - - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any somgs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any somgs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> - - - Ui_AlertEditDialog - - - Clear - Clear - - - Ui_BibleImportWizard - - - Please wait while your Bible is imported. - Please wait while your Bible is imported. - - - MediaManagerItem - - - No items selected... - No items selected... - - - Ui_OpenLPImportDialog - - - Select All - Select All - - - Ui_AmendThemeDialog - - - Font Main - Font Main - - - ImageMediaItem - - - Images (*.jpg *jpeg *.gif *.png *.bmp) - Images (*.jpg *jpeg *.gif *.png *.bmp) - - - Ui_OpenLPImportDialog - - - Title - Title - - - Ui_OpenSongExportDialog - - - Select OpenSong song folder: - Select OpenSong song folder: - - - Ui_MainWindow - - - Toggle Media Manager - Toggle Media Manager - - - SongUsagePlugin - - - &Song Usage - &Song Usage - - - GeneralTab - - - Monitors - Monitors - - - EditCustomForm - - - You need to enter a slide - You need to enter a slide - - - Ui_SongMaintenanceDialog - - - Topics - Topics - - - ImportWizardForm - - - You need to specify a file to import your Bible from! - + + <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> + - - - Ui_EditVerseDialog + + + ImagePlugin.ImageTab - - Verse Type - Verse Type - - - OpenSongBible - - - Importing - Importing - - - Ui_EditSongDialog - - - Comments - Comments - - - AlertsTab - - - Bottom - Bottom - - - Ui_MainWindow - - - Create a new Service - Create a new Service - - - AlertsTab - - - Top - Top - - - ServiceManager - - - &Preview Verse - &Preview Verse - - - Ui_PluginViewDialog - - - TextLabel - TextLabel - - - AlertsTab - - - Font Size: - Font Size: - - - Ui_PluginViewDialog - - - About: - About: - - - Inactive - Inactive - - - Ui_OpenSongExportDialog - - - Ready to export - Ready to export - - - Export - Export - - - Ui_PluginViewDialog - - - Plugin List - Plugin List - - - Ui_AmendThemeDialog - - - Transition Active: - Transition Active: - - - Ui_BibleImportWizard - - - Proxy Server (Optional) - Proxy Server (Optional) - - - Ui_EditSongDialog - - - &Manage Authors, Topics, Books - &Manage Authors, Topics, Books - - - Ui_SongUsageDetailDialog - - - Audit Detail Extraction - + + Images + Images - - - Ui_OpenLPExportDialog - - Ready to export - Ready to export - - - EditCustomForm + + Image Settings + Image Settings + - - Save && Preview - Save && Preview - - - Ui_OpenLPExportDialog + + Slide Loop Delay: + Slide Loop Delay: + - - Select All - Select All - - - Ui_SongUsageDetailDialog + + sec + sec + + + + ImagePlugin.MediaItem - - to - to - - - Ui_AmendThemeDialog + + Image + Image + - - Size: - Size: - - + + Select Image(s) + Select Image(s) + + + + All Files + + + + + Replace Live Background + + + + + You must select an item to delete. + + + + + Image(s) + Image(s) + + + + You must select an item to process. + + + + + LanguageManager + + + Language + + + + + After restart new Language settings will be used. + + + + MainWindow - - OpenLP Main Display Blanked - OpenLP Main Display Blanked - - - Ui_OpenLPImportDialog + + The Main Display has been blanked out + The Main Display has been blanked out + - - Remove Selected - Remove Selected - - - Ui_EditSongDialog + + OpenLP Version Updated + OpenLP Version Updated + - - Delete - Delete - - - ImportWizardForm + + Save Changes to Service? + Save Changes to Service? + - - You need to specify an OpenSong Bible file to import! - You need to specify an OpenSong Bible file to import! - - - PresentationMediaItem + + OpenLP Main Display Blanked + OpenLP Main Display Blanked + - - File exists - File exists - - - Ui_OpenLPExportDialog + + OpenLP 2.0 + OpenLP 2.0 + - - Title - Title - - - Ui_OpenSongImportDialog + + English + English + - - Ready to import - Ready to import - - - SlideController + + &File + &File + - - Stop continuous loop - Stop continuous loop + + &Import + &Import + - - s - s - - - SongMediaItem + + &Export + &Export + - - Song Maintenance - Song Maintenance - - - Ui_customEditDialog + + &View + &View + - - Edit - Edit - - - Ui_AmendThemeDialog + + M&ode + M&ode + - - Gradient : - Gradient : - - - ImportWizardForm + + &Tools + &Tools + - - Invalid Verse File - Invalid Verse File - - - EditSongForm + + &Settings + &Settings + - - Error - Error - - - Ui_customEditDialog + + &Language + &Language + - - Add New - Add New - - - Ui_AuthorsDialog + + &Help + &Help + - - Display name: - Display name: - - - SongMaintenanceForm + + Media Manager + Media Manager + - - Are you sure you want to delete the selected topic? - Are you sure you want to delete the selected topic? - - - Ui_AmendThemeDialog + + Service Manager + Service Manager + - - Bold/Italics - Bold/Italics - - - Ui_SongMaintenanceDialog + + Theme Manager + Theme Manager + - - Song Maintenance - Song Maintenance - - - Ui_BibleImportWizard + + &New + &New + - - Welcome to the Bible Import Wizard - Welcome to the Bible Import Wizard - - - SongsTab + + New Service + New Service + - - Songs - Songs - - - Ui_BibleImportWizard + + Create a new service. + + - - Password: - Password: - - - Ui_MainWindow + + Ctrl+N + Ctrl+N + - - &Theme Manager - &Theme Manager - - + + &Open + &Open + + + + Open Service + Open Service + + + + Open an existing service. + + + + + Ctrl+O + Ctrl+O + + + + &Save + &Save + + + + Save Service + Save Service + + + + Save the current service to disk. + + + + + Ctrl+S + Ctrl+S + + + + Save &As... + Save &As... + + + + Save Service As + Save Service As + + + + Save the current service under a new name. + + + + + Ctrl+Shift+S + + + + + E&xit + E&xit + + + + Quit OpenLP + Quit OpenLP + + + + Alt+F4 + Alt+F4 + + + + &Theme + &Theme + + + + &Configure OpenLP... + + + + + &Media Manager + &Media Manager + + + + Toggle Media Manager + Toggle Media Manager + + + + Toggle the visibility of the media manager. + + + + + F8 + F8 + + + + &Theme Manager + &Theme Manager + + + + Toggle Theme Manager + Toggle Theme Manager + + + + Toggle the visibility of the theme manager. + + + + + F10 + F10 + + + + &Service Manager + &Service Manager + + + + Toggle Service Manager + Toggle Service Manager + + + + Toggle the visibility of the service manager. + + + + + F9 + F9 + + + + &Preview Panel + &Preview Panel + + + + Toggle Preview Panel + Toggle Preview Panel + + + + Toggle the visibility of the preview panel. + + + + + F11 + F11 + + + + &Live Panel + + + + + Toggle Live Panel + + + + + Toggle the visibility of the live panel. + + + + + F12 + F12 + + + + &Plugin List + &Plugin List + + + + List the Plugins + List the Plugins + + + + Alt+F7 + Alt+F7 + + + + &User Guide + &User Guide + + + + &About + &About + + + + More information about OpenLP + More information about OpenLP + + + + Ctrl+F1 + Ctrl+F1 + + + + &Online Help + &Online Help + + + + &Web Site + &Web Site + + + + &Auto Detect + + + + + Use the system language, if available. + + + + + Set the interface language to %s + + + + + Add &Tool... + + + + + Add an application to the list of tools. + + + + + &Default + + + + + Set the view mode back to the default. + + + + + &Setup + + + + + Set the view mode to Setup. + + + + + &Live + &Live + + + + Set the view mode to Live. + + + + + Version %s of OpenLP is now available for download (you are currently running version %s). + +You can download the latest version from http://openlp.org + + + + + Your service has changed. Do you want to save those changes? + + + + + Default Theme: %s + + + + MediaManagerItem - - Preview the selected item - Preview the selected item - - - Ui_BibleImportWizard + + You must select one or more items + You must select one or more items + - - Version Name: - Version Name: - - - Ui_AboutDialog + + Delete the selected item + Delete the selected item + - - About - About - - - MediaMediaItem + + &Add to Service + &Add to Service + - - Select Media - Select Media - - - Ui_AmendThemeDialog + + Send the selected item live + Send the selected item live + - - Horizontal Align: - Horizontal Align: - - + + Add the selected item(s) to the service + Add the selected item(s) to the service + + + + &Show Live + &Show Live + + + + Preview the selected item + Preview the selected item + + + + No Items Selected + + + + + Import %s + + + + + Import a %s + + + + + Load %s + + + + + Load a new %s + + + + + New %s + + + + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Preview %s + + + + + Add %s to Service + + + + + &Edit %s + + + + + &Delete %s + + + + + &Preview %s + + + + + &Add to selected Service Item + + + + + You must select one or more items to preview. + + + + + You must select one or more items to send live. + + + + + You must select one or more items. + + + + + No items selected + + + + + No Service Item Selected + + + + + You must select an existing service item to add to. + + + + + Invalid Service Item + + + + + You must select a %s service item. + + + + + MediaPlugin + + + <b>Media Plugin</b><br>This plugin allows the playing of audio and video media + <b>Media Plugin</b><br>This plugin allows the playing of audio and video media + + + + MediaPlugin.MediaItem + + + Media + Media + + + + Select Media + Select Media + + + + Replace Live Background + + + + + You must select an item to delete. + + + + + OpenLP + + + Image Files + + + + + PluginForm + + + Plugin List + Plugin List + + + + Plugin Details + Plugin Details + + + + Version: + Version: + + + + TextLabel + TextLabel + + + + About: + About: + + + + Status: + Status: + + + + Active + Active + + + + Inactive + Inactive + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + + + + + PresentationPlugin + + + <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + + + + PresentationPlugin.MediaItem + + + Presentation + Presentation + + + + Select Presentation(s) + Select Presentation(s) + + + + Automatic + + + + + Present using: + Present using: + + + + File exists + File exists + + + + A presentation with that filename already exists. + A presentation with that filename already exists. + + + + You must select an item to delete. + + + + + PresentationPlugin.PresentationTab + + + Presentations + Presentations + + + + Available Controllers + Available Controllers + + + + available + available + + + + RemotePlugin + + + <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer via a web browser or other app<br>The Primary use for this would be to send alerts from a creche + + + + + RemotePlugin.RemoteTab + + + Remotes + Remotes + + + + Remotes Receiver Port + Remotes Receiver Port + + + + ServiceItemEditForm + + + Service Item Maintenance + + + + + Up + + + + + Delete + Delete + + + + Down + + + + ServiceManager - - &Edit Item - &Edit Item - - - Ui_AmendThemeDialog - - - Background Type: - Background Type: - - - Ui_MainWindow - - - &Save - &Save - - - OpenLP 2.0 - OpenLP 2.0 - - - ThemeManager - - - A theme with this name already exists, would you like to overwrite it? - A theme with this name already exists, would you like to overwrite it? - - - PresentationMediaItem - - - Select Presentation(s) - Select Presentation(s) - - - ThemeManager - - - Export a theme - Export a theme - - - AmendThemeForm - - - Open file - Open file - - - Ui_TopicsDialog - - - Topic Maintenance - Topic Maintenance - - - Ui_customEditDialog - - - Clear edit area - Clear edit area - - - Ui_AmendThemeDialog - - - Show Outline: - Show Outline: - - - SongBookForm - - - You need to type in a book name! - + + Save Changes to Service? + Save Changes to Service? - - - ImportWizardForm - - Open OpenSong Bible - Open OpenSong Bible - - - Ui_MainWindow + + Open Service + Open Service + - - Look && &Feel - Look && &Feel - - - Ui_BibleImportWizard + + Move to top + Move to top + - - Ready. - Ready. - - + + 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 + + + Settings + Settings + + + + 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 + + + &Delete recorded data + &Delete recorded data + + + + Start/Stop live song usage recording + Start/Stop live song usage recording + + + + <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service + <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service + + + + Delete song usage to specified date + Delete song usage to specified date + + + + Generate report on Song Usage + Generate report on Song Usage + + + + Song Usage Status + Song Usage Status + + + + &Extract recorded data + &Extract recorded data + + + + &Song Usage + &Song Usage + + + + SongsPlugin + + + &Song + &Song + + + + Import songs using the import wizard. + + + + + Songs of Fellowship (temp menu item) + + + + + Import songs from the VOLS1_2.RTF, sof3words.rtf and sof4words.rtf supplied with the music books + + + + + Generic Document/Presentation Import (temp menu item) + + + + + Import songs from Word/Writer/Powerpoint/Impress + + + + + Open Songs of Fellowship file + + + + + Import Error + + + + + Error importing Songs of Fellowship file. +OpenOffice.org must be installed and you must be using an unedited copy of the RTF included with the Songs of Fellowship Music Editions + + + + + Open documents or presentations + + + + + <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + + + + + SongsPlugin.AuditDeleteDialog + + + Song Usage Delete + + + + + SongsPlugin.AuditDetailDialog + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + to + + + + Report Location + Report Location + + + + SongsPlugin.AuthorsForm + + + Author Maintenance + Author Maintenance + + + + Display name: + Display name: + + + + First name: + First name: + + + + Last name: + Last name: + + + + Error + Error + + + + You need to type in the first name of the author. + You need to type in the first name of the author. + + + + You need to type in the last name of the author. + You need to type in the last name of the author. + + + + You haven't set a display name for the author, would you like me to combine the first and last names for you? + You haven't set a display name for the author, would you like me to combine the first and last names for you? + + + + SongsPlugin.EditSongForm + + + Song Editor + Song Editor + + + + &Title: + + + + + Alt&ernate Title: + + + + + &Lyrics: + + + + + &Verse Order: + + + + + &Add + + + + + &Edit + &Edit + + + + Ed&it All + + + + + &Delete + + + + + Title && Lyrics + Title && Lyrics + + + + Authors + Authors + + + + &Add to Song + &Add to Song + + + + &Remove + &Remove + + + + &Manage Authors, Topics, Books + &Manage Authors, Topics, Books + + + + Topic + Topic + + + + A&dd to Song + A&dd to Song + + + + R&emove + R&emove + + + + Song Book + Song Book + + + + Authors, Topics && Book + Authors, Topics && Book + + + + Theme + Theme + + + + New &Theme + + + + + Copyright Information + Copyright Information + + + + © + + + + + CCLI Number: + CCLI Number: + + + + Comments + Comments + + + + Theme, Copyright Info && Comments + Theme, Copyright Info && Comments + + + + Save && Preview + Save && Preview + + + + Add Author + + + + + This author does not exist, do you want to add them? + + + + + 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? + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + Edit Verse + + + + &Verse type: + + + + + &Insert + + + + + SongsPlugin.ImportWizardForm + + + No OpenLyrics Files Selected + + + + + You need to add at least one OpenLyrics song file to import from. + + + + + No OpenSong Files Selected + + + + + You need to add at least one OpenSong song file to import from. + + + + + No CCLI Files Selected + + + + + You need to add at least one CCLI file to import from. + + + + + No CSV File Selected + + + + + You need to specify a CSV file to import from. + + + + + Starting import... + Starting import... + + + + Song Import Wizard + + + + + Welcome to the Song Import Wizard + + + + + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. + + + + + Select Import Source + Select Import Source + + + + Select the import format, and where to import from. + Select the import format, and where to import from. + + + + Format: + Format: + + + + OpenLyrics + + + + + OpenSong + OpenSong + + + + CCLI + + + + + CSV + CSV + + + + Add Files... + + + + + Remove File(s) + + + + + Filename: + + + + + Browse... + + + + + Importing + Importing + + + + Please wait while your songs are imported. + + + + + Ready. + Ready. + + + + %p% + + + + + SongsPlugin.MediaItem + + + Song + Song + + + + Song Maintenance + Song Maintenance + + + + Maintain the lists of authors, topics and books + Maintain the lists of authors, topics and books + + + + Search: + Search: + + + + Type: + Type: + + + + Clear + Clear + + + + Search + Search + + + + Titles + + + + + Lyrics + Lyrics + + + + Authors + Authors + + + + %s (%s) + + + + + You must select an item to edit. + + + + + You must select an item to delete. + + + + + Delete song? + + + + + Delete %d songs? + + + + + Delete Confirmation + + + + + CCLI Licence: + CCLI Licence: + + + + SongsPlugin.SongBookForm + + + Edit Book + Edit Book + + + + &Name: + + + + + &Publisher: + + + + + Error + Error + + + + You need to type in a name for the book. + + + + + SongsPlugin.SongImport + + + copyright + + + + + © + + + + + SongsPlugin.SongMaintenanceForm + + + Song Maintenance + Song Maintenance + + + + Authors + Authors + + + + Topics + Topics + + + + Books/Hymnals + Books/Hymnals + + + + &Add + + + + + &Edit + &Edit + + + + &Delete + + + + + Error + Error + + + + Couldn't add your author. + + + + + Couldn't add your topic. + + + + + Couldn't add your book. + + + + + Couldn't save your author. + + + + + Couldn't save your topic. + + + + + Couldn't save your book. + + + + + Delete Author + Delete Author + + + + Are you sure you want to delete the selected author? + + + + + This author can't 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 can't 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 can't 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 + Output File Location + + + + SongsPlugin.SongsTab + + + Songs + Songs + + + + Songs Mode + Songs Mode + + + + Enable search as you type + + + + + Display Verses on Live Tool bar + + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + Topic Maintenance + + + + Topic name: + Topic name: + + + + Error + Error + + + + You need to type in a topic name! + + + + + Splashscreen + + + Starting + Starting + + + + Splash Screen + Splash Screen + + + ThemeManager - - You have not selected a theme! - + + Import Theme + Import Theme - - - Ui_SongMaintenanceDialog - - Books/Hymnals - Books/Hymnals - - - Ui_AboutDialog + + Delete Theme + Delete Theme + - - Contribute - Contribute - - - Ui_AmendThemeDialog + + Error + Error + - - Gradient - Gradient - - - Ui_BibleImportWizard + + Edit Theme + Edit Theme + - - Books Location: - Books Location: - - - Ui_OpenSongExportDialog + + Export Theme + Export Theme + - - Full Song List - Full Song List - - - GeneralTab + + Theme Exists + Theme Exists + - - SongSelect Password: - SongSelect Password: - - + + Save Theme - (%s) + Save Theme - (%s) + + + + Select Theme Import File + Select Theme Import File + + + + New Theme + New Theme + + + + Create a new theme. + + + + + Edit a theme. + + + + + Delete a theme. + + + + + Import a theme. + + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + You are unable to delete the default theme. + + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Theme (*.*) + + + + + File is not a valid theme. +The content encoding is not UTF-8. + + + + + File is not a valid theme. + + + + + A theme with this name already exists. Would you like to overwrite it? + + + + + ThemesTab + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + + + + Use the global theme, overriding any themes associated with either the service or the songs. + Use the global theme, overriding any themes associated with either the service or the songs. + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + + + + Themes + Themes + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + &Service Level + + + + + &Global Level + + + + + VerseType + + + Verse + Verse + + + + Chorus + Chorus + + + + Bridge + Bridge + + + + Pre-Chorus + Pre-Chorus + + + + Intro + Intro + + + + Ending + Ending + + + + Other + Other + + diff --git a/resources/i18n/openlp_en_ZA.ts b/resources/i18n/openlp_en_ZA.ts index a85573725..6b74456cb 100644 --- a/resources/i18n/openlp_en_ZA.ts +++ b/resources/i18n/openlp_en_ZA.ts @@ -1,4457 +1,3775 @@ - - - - BibleMediaItem - - - Quick - Quick - - - Ui_customEditDialog - - - Delete selected slide - Delete selected slide - - - BiblesTab - - - ( and ) - ( and ) - - - RemoteTab - - - Remotes - Remotes - - - Ui_EditSongDialog - - - &Remove - &Remove"&" needs to stay in, it's a shortcut in a menu. - - - Ui_AmendThemeDialog - - - Shadow Size: - Shadow Size: - - - Ui_OpenSongExportDialog - - - Close - Close - - - ThemeManager - - - Import Theme - Import Theme - - - Ui_AmendThemeDialog - - - Slide Transition - Slide Transition - - - SongMaintenanceForm - - - Are you sure you want to delete the selected book? - Are you sure you want to delete the selected book? - - - ThemesTab - - - Theme level - Theme level - - - BibleMediaItem - - - Bible - Bible - - - ServiceManager - - - Save Changes to Service? - Save Changes to Service? - - - SongUsagePlugin - - - &Delete recorded data - &Delete recorded data - - - Ui_OpenLPExportDialog - - - Song Title - Song Title - - - Ui_customEditDialog - - - Edit selected slide - Edit selected slide - - - SongMediaItem - - - CCLI Licence: - CCLI License: - - - Ui_SongUsageDeleteDialog - - - Audit Delete - Audit Delete - - - Ui_BibleImportWizard - - - Bible Import Wizard - Bible Import Wizard - - - Ui_customEditDialog - - - Edit All - Edit All - - - Ui_ServiceNoteEdit - - - Service Item Notes - Service Item Notes - - - SongMaintenanceForm - - - Couldn't save your author! - Couldn't save your author! - - - Ui_customEditDialog - - - Clear - Clear - - - ThemesTab - - - Global theme - Global theme - - - SongUsagePlugin - - - Start/Stop live song usage recording - Start/Stop live song usage recording - - - MainWindow - - - The Main Display has been blanked out - The Main Display has been blanked out - - - Ui_OpenSongExportDialog - - - Lyrics - Lyrics - - - Ui_AlertDialog - - - Display - Display - - - Ui_customEditDialog - - - Delete - Delete - - - Ui_EditVerseDialog - - - Verse - Verse - - - SongMaintenanceForm - - - This author can't be deleted, they are currently assigned to at least one song! - This author can't be deleted, they are currently assigned to at least one song! - - - ThemeManager - - - Create a new theme - Create a new theme - - - Ui_MainWindow - - - Open an existing service - Open an existing service - - - SlideController - - - Move to previous - Move to previous - - - SongsPlugin - - - &Song - &Song - - - Ui_PluginViewDialog - - - Plugin Details - Plugin Details - - - AlertsTab - - - pt - pt - - - Edit History: - Edit History: - - - Ui_MainWindow - - - &File - &File - - - SongMaintenanceForm - - - Couldn't add your book! - Couldn't add your book! - - - BiblesTab - - - verse per line - verse per line - - - Ui_customEditDialog - - - Theme: - Theme: - - - SongMaintenanceForm - - - Error - Error - - - Ui_BibleImportWizard - - - Bible: - Bible: - - - ImportWizardForm - - - You need to specify a file with books of the Bible to use in the import! - You need to specify a file with books of the Bible to use in the import! - - - ThemeManager - - - Delete Theme - Delete Theme - - - SplashScreen - - - Splash Screen - Splash Screen - - - SongMediaItem - - - Song - Song - - - SongUsageDeleteForm - - - Delete Selected Audit Events? - Delete selected song usage events? - - - Ui_OpenSongExportDialog - - - Song Title - Song Title - - - Ui_AmendThemeDialog - - - Bottom - Bottom - - - Ui_MainWindow - - - List the Plugins - List the plugins - - - SongMaintenanceForm - - - No author selected! - No author selected! - - - SongUsagePlugin - - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - - - Ui_customEditDialog - - - Move slide Up 1 - Move slide up 1 - - - SongsPlugin - - - OpenSong - OpenSong - - - AlertsManager - - - Alert message created and delayed - Alert message created and delayed - - - Ui_EditSongDialog - - - Alternative Title: - Alternative Title: - - - ServiceManager - - - Open Service - Open Service - - - BiblesTab - - - Display Style: - Display Style: - - - Ui_AmendThemeDialog - - - Image - Image - - - EditSongForm - - - You need to enter a song title. - You need to enter a song title. - - - ThemeManager - - - Error - Error - - - ImportWizardForm - - - Invalid Bible Location - Invalid Bible Location - - - ThemesTab - - - Global level - Global level - - - ThemeManager - - - Make Global - Make Global - - - Ui_MainWindow - - - &Service Manager - &Service Manager - - - Ui_OpenLPImportDialog - - - Author - Author - - - Ui_AmendThemeDialog - - - Height: - Height: - - - ThemeManager - - - Delete a theme - Delete a theme - - - Ui_BibleImportWizard - - - Crosswalk - Crosswalk - - - SongBookForm - - - Error - Error - - - Ui_AuthorsDialog - - - Last name: - Last name: - - - Ui_customEditDialog - - - Title: - Title: - - - ImportWizardForm - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - - - SongMediaItem - - - Maintain the lists of authors, topics and books - Maintain the lists of authors, topics and books - - - Ui_AlertEditDialog - - - Save - Save - - - EditCustomForm - - - You have unsaved data - You have unsaved data - - - Ui_AmendThemeDialog - - - Outline - Outline - - - BibleMediaItem - - - Text Search - Text Search - - - Ui_BibleImportWizard - - - CSV - CSV - - - SongUsagePlugin - - - Delete song usage to specified date - Delete song usage to specified date - - - Ui_SongUsageDetailDialog - - - Report Location - Report Location - - - Ui_BibleImportWizard - - - OpenSong - OpenSong - - - Ui_MainWindow - - - Open Service - Open Service - - - BibleMediaItem - - - Find: - Find: - - - ImageMediaItem - - - Select Image(s) - Select Image(s) - - - BibleMediaItem - - - Search Type: - Search Type: - - - Ui_MainWindow - - - Media Manager - Media Manager - - - Alt+F4 - Alt+F4 - - - MediaManagerItem - - - &Preview - &Preview - - - GeneralTab - - - CCLI Details - CCLI Details - - - BibleMediaItem - - - Bible not fully loaded - Bible not fully loaded - - - Ui_MainWindow - - - Toggle the visibility of the Preview Panel - Toggle the visibility of the Preview Panel - - - ImportWizardForm - - - Bible Exists - Bible Exists - - - Ui_MainWindow - - - &User Guide - &User Guide - - - SongUsageDeleteForm - - - Are you sure you want to delete selected Audit Data? - Are you sure you want to delete the selected song usage data? - - - Ui_MainWindow - - - Set the interface language to English - Set the interface language to English - - - Ui_AmendThemeDialog - - - Main Font - Main Font - - - ImportWizardForm - - - Empty Copyright - Empty Copyright - - - CustomPlugin - - - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin. - - - AuthorsForm - - - You need to type in the first name of the author. - You need to type in the first name of the author. - - - SongsTab - - - Display Verses on Live Tool bar: - Display Verses on Live Tool bar: - - - ServiceManager - - - Move to top - Move to top - - - ImageMediaItem - - - Override background - Override background - - - Ui_SongMaintenanceDialog - - - Edit - Edit - - - Ui_OpenSongExportDialog - - - Select All - Select All - - - ThemesTab - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - - - PresentationMediaItem - - - Presentation - Presentation - - - Ui_AmendThemeDialog - - - Solid Color - Solid Colour - - - CustomTab - - - Custom - Custom - - - Ui_OpenLPImportDialog - - - Ready to import - Ready to import - - - MainWindow - - - OpenLP version %s has been updated to version %s - -You can obtain the latest version from http://openlp.org - OpenLP version %s has been updated to version %s - -You can obtain the latest version from http://openlp.org - - - Ui_BibleImportWizard - - - File Location: - File Location: - - - SlideController - - - Go to Verse - Go to Verse - - - Ui_MainWindow - - - &Import - &Import - - - Quit OpenLP - Quit OpenLP - - - Ui_BibleImportWizard - - - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - - - SongMaintenanceForm - - - Couldn't add your topic! - Couldn't add your topic! - - - ImportWizardForm - - - Empty Version Name - Empty Version Name - - - Ui_MainWindow - - - &Preview Panel - &Preview Panel - - - SlideController - - - Start continuous loop - Start continuous loop - - - ServiceManager - - - Move down - Move down - - - GeneralTab - - - primary - primary - - - Ui_EditSongDialog - - - Add a Theme - Add a Theme - - - Ui_MainWindow - - - &New - &New - - - Ui_customEditDialog - - - Credits: - Credits: - - - SlideController - - - Live - Live - - - GeneralTab - - - Show blank screen warning - Show blank screen warning - - - BiblesTab - - - continuous - continuous - - - Ui_EditVerseDialog - - - Number - Number - - - GeneralTab - - - Application Startup - Application Startup - - - Ui_AmendThemeDialog - - - Use Default Location: - Use Default Location: - - - Ui_OpenSongImportDialog - - - Import - Import - - - Ui_AmendThemeDialog - - - Other Options - Other Options - - - Ui_EditSongDialog - - - Verse Order: - Verse Order: - - - Ui_SongUsageDetailDialog - - - ASelect Date Range - ASelect Date Range - - - Ui_MainWindow - - - Default Theme: - Default Theme: - - - Toggle Preview Panel - Toggle Preview Panel - - - SongMediaItem - - - Lyrics - Lyrics - - - Ui_OpenLPImportDialog - - - Progress: - Progress: - - - Ui_AmendThemeDialog - - - Shadow - Shadow - - - GeneralTab - - - Select monitor for output display: - Select monitor for output display: - - - Ui_MainWindow - - - &Settings - &Settings - - - Ui_AmendThemeDialog - - - Italics - Italics - - - ServiceManager - - - Create a new service - Create a new service - - - Ui_AmendThemeDialog - - - Background: - Background: - - - Ui_OpenLPImportDialog - - - openlp.org Song Importer - openlp.org Song Importer - - - Ui_BibleImportWizard - - - Copyright: - Copyright: - - - ThemesTab - - - Service level - Service level - - - BiblesTab - - - [ and ] - [ and ] - - - Ui_BibleImportWizard - - - Verse Location: - Verse Location: - - - MediaManagerItem - - - You must select one or more items - You must select one or more items - - - GeneralTab - - - Application Settings - Application Settings - - - ServiceManager - - - Save this service - Save this service - - - ImportWizardForm - - - Open Books CSV file - Open Books CSV file - - - GeneralTab - - - SongSelect Username: - SongSelect Username: - - - Ui_AmendThemeDialog - - - X Position: - X Position: - - - BibleMediaItem - - - No matching book could be found in this Bible. - No matching book could be found in this Bible. - - - Ui_BibleImportWizard - - - Server: - Server: - - - SongMaintenanceForm - - - Couldn't save your book! - Couldn't save your book! - - - Ui_EditVerseDialog - - - Ending - Ending - - - CustomTab - - - Display Footer: - Display Footer: - - - ImportWizardForm - - - Invalid OpenSong Bible - Invalid OpenSong Bible - - - GeneralTab - - - CCLI Number: - CCLI Number: - - - Ui_AmendThemeDialog - - - Center - Centre - - - ServiceManager - - - Theme: - Theme: - - - Ui_MainWindow - - - &Live - &Live - - - Ui_AmendThemeDialog - - - <Color2> - <Color2> - - - Ui_MainWindow - - - English - English - - - ImageMediaItem - - - You must select one or more items - You must select one or more items - - - Ui_AuthorsDialog - - - First name: - First name: - - - Ui_OpenLPExportDialog - - - Select openlp.org export filename: - Select openlp.org export filename: - - - Ui_BibleImportWizard - - - Permission: - Permission: - - - Ui_OpenSongImportDialog - - - Close - Close - - - Ui_AmendThemeDialog - - - Opaque - Opaque - - - SongMaintenanceForm - - - This book can't be deleted, it is currently assigned to at least one song! - This book can't be deleted, it is currently assigned to at least one song! - - - ImportWizardForm - - - Your Bible import failed. - Your Bible import failed. - - - SlideController - - - Start playing media - Start playing media - - - SongMediaItem - - - Type: - Type: - - - Ui_AboutDialog - - - Close - Close - - - TopicsForm - - - You need to type in a topic name! - You need to type in a topic name! - - - Ui_OpenSongExportDialog - - - Song Export List - Song Export List - - - BibleMediaItem - - - Dual: - Dual: - - - ImageTab - - - sec - sec - - - ServiceManager - - - Delete From Service - Delete From Service - - - GeneralTab - - - Automatically open the last service - Automatically open the last service - - - Ui_OpenLPImportDialog - - - Song Import List - Song Import List - - - Ui_OpenSongExportDialog - - - Author - Author - - - Ui_AmendThemeDialog - - - Outline Color: - Outline Colour: - - - Ui_BibleImportWizard - - - Select Import Source - Select Import Source - - - Ui_MainWindow - - - F9 - F9 - - - F8 - F8 - - - ServiceManager - - - &Change Item Theme - &Change Item Theme - - - Ui_OpenSongImportDialog - - - OpenSong Folder: - OpenSong Folder: - - - Ui_OpenLPImportDialog - - - Import File Song List - Import File Song List - - - Ui_customEditDialog - - - Edit Custom Slides - Edit Custom Slides - - - Ui_BibleImportWizard - - - Set up the Bible's license details. - Set up the Bible's license details. - - - Ui_AmendThemeDialog - - - Alignment - Alignment - - - SongMaintenanceForm - - - Delete Book - Delete Book - - - ThemeManager - - - Edit a theme - Edit a theme - - - Ui_BibleImportWizard - - - BibleGateway - BibleGateway - - - GeneralTab - - - Preview Next Song from Service Manager - Preview Next Song from Service Manager - - - Ui_EditSongDialog - - - Title && Lyrics - Title && Lyrics - - - SongMaintenanceForm - - - No book selected! - No book selected! - - - SlideController - - - Move to live - Move to live - - - Ui_EditVerseDialog - - - Other - Other - - - Ui_EditSongDialog - - - Theme - Theme - - - ServiceManager - - - Save Service - Save Service - - - Ui_MainWindow - - - Save the current service to disk - Save the current service to disk - - - BibleMediaItem - - - Chapter: - Chapter: - - - Search - Search - - - PresentationTab - - - Available Controllers - Available Controllers - - - ImportWizardForm - - - Open Verses CSV file - Open Verses CSV file - - - TopicsForm - - - Error - Error - - - RemoteTab - - - Remotes Receiver Port - Remotes Receiver Port - - - Ui_MainWindow - - - &View - &View - - - Ui_AmendThemeDialog - - - Normal - Normal - - - Ui_OpenLPExportDialog - - - Close - Close - - - Ui_BibleImportWizard - - - Username: - Username: - - - ThemeManager - - - Edit Theme - Edit Theme - - - SlideController - - - Preview - Preview - - - Ui_AlertDialog - - - Alert Message - Alert Message - - - ImportWizardForm - - - Finished import. - Finished import. - - - You need to specify a file of Bible verses to import! - You need to specify a file of Bible verses to import! - - - AlertsTab - - - Location: - Location: - - - Ui_EditSongDialog - - - Authors, Topics && Book - Authors, Topics && Book - - - EditSongForm - - - You need to enter some verses. - You need to enter some verses. - - - Ui_BibleImportWizard - - - Download Options - Download Options - - - BiblePlugin - - - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - - - Ui_EditSongDialog - - - Copyright Information - Copyright Information - - - Ui_MainWindow - - - &Export - &Export - - - Ui_AmendThemeDialog - - - Bold - Bold - - - SongsPlugin - - - Export songs in OpenLP 2.0 format - Export songs in OpenLP 2.0 format - - - MediaManagerItem - - - Load a new - Load a new - - - AlertEditForm - - - Missing data - Missing data - - - SongsPlugin - - - <b>Song Plugin</b> <br>This plugin allows Songs to be managed and displayed.<br> - <b>Song Plugin</b><br>This plugin allows songs to be managed and displayed.<br> - - - Ui_AmendThemeDialog - - - Footer Font - Footer Font - - - EditSongForm - - - Invalid verse entry - vX - Invalid verse entry - vX - - - MediaManagerItem - - - Delete the selected item - Delete the selected item - - - Ui_OpenLPExportDialog - - - Export - Export - - - Ui_BibleImportWizard - - - Location: - Location: - - - BibleMediaItem - - - Keep - Keep - - - SongUsagePlugin - - - Generate report on Song Usage - Generate report on Song Usage - - - Ui_EditSongDialog - - - Topic - Topic - - - Ui_MainWindow - - - &Open - &Open - - - AuthorsForm - - - You haven't set a display name for the author, would you like me to combine the first and last names for you? - You haven't set a display name for the author, would you like me to combine the first and last names for you? - - - AmendThemeForm - - - Slide Height is %s rows - Slide Height is %s rows - - - Ui_EditVerseDialog - - - Pre-Chorus - Pre-Chorus - - - Ui_EditSongDialog - - - Lyrics: - Lyrics: - - - Ui_AboutDialog - - - Project Lead - Raoul "superfly" Snyman - -Developers - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Testers - Wesley "wrst" Stout - Project Lead - Raoul "superfly" Snyman - -Developers - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Testers - Wesley "wrst" Stout - - - SongMediaItem - - - Titles - Titles - - - Ui_OpenLPExportDialog - - - Lyrics - Lyrics - - - PresentationMediaItem - - - Present using: - Present using: - - - SongMediaItem - - - Clear - Clear - - - ServiceManager - - - &Live Verse - &Live Verse - - - Ui_OpenSongImportDialog - - - Progress: - Progress: - - - Ui_MainWindow - - - Toggle Theme Manager - Toggle Theme Manager - - - Ui_AlertDialog - - - Alert Text: - Alert Text: - - - Ui_EditSongDialog - - - Edit - Edit - - - AlertsTab - - - Font Color: - Font Colour: - - - Ui_AmendThemeDialog - - - Theme Maintenance - Theme Maintenance - - - CustomTab - - - Custom Display - Custom Display - - - Ui_OpenSongExportDialog - - - Title - Title - - - Ui_AmendThemeDialog - - - <Color1> - <Color1> - - - Ui_EditSongDialog - - - Authors - Authors - - - ThemeManager - - - Export Theme - Export Theme - - - ServiceManager - - - (N) - (N) - - - Ui_SongBookDialog - - - Name: - Name: - - - Ui_AuthorsDialog - - - Author Maintenance - Author Maintenance - - - Ui_AmendThemeDialog - - - Font Footer - Font Footer - - - BiblesTab - - - Verse Display - Verse Display - - - Ui_MainWindow - - - &Options - &Options - - - BibleMediaItem - - - Results: - Results: - - - Ui_OpenLPExportDialog - - - Full Song List - Full Song List - - - SlideController - - - Move to last - Move to last - - - Ui_OpenLPExportDialog - - - Progress: - Progress: - - - Ui_SongMaintenanceDialog - - - Add - Add - - - SongMaintenanceForm - - - Are you sure you want to delete the selected author? - Are you sure you want to delete the selected author? - - - SongUsagePlugin - - - Song Usage Status - Song Usage Status - - - BibleMediaItem - - - Verse Search - Verse Search - - - Ui_SongBookDialog - - - Edit Book - Edit Book - - - EditSongForm - - - Save && Preview - Save && Preview - - - Ui_SongBookDialog - - - Publisher: - Publisher: - - - Ui_AmendThemeDialog - - - Font Weight: - Font Weight: - - - Ui_BibleImportWizard - - - Bible Filename: - Bible Filename: - - - Ui_AmendThemeDialog - - - Transparent - Transparent - - - SongMediaItem - - - Search - Search - - - Ui_BibleImportWizard - - - Format: - Format: - - - Ui_AmendThemeDialog - - - Background - Background - - - Ui_BibleImportWizard - - - Importing - Importing - - - Ui_customEditDialog - - - Edit all slides - Edit all slides. - - - SongsTab - - - Enable search as you type: - Enable search as you type - - - Ui_MainWindow - - - Ctrl+S - Ctrl+S - - - SongMediaItem - - - Authors - Authors - - - Ui_PluginViewDialog - - - Active - Active - - - SongMaintenanceForm - - - Couldn't save your topic! - Couldn't save your topic! - - - Ui_MainWindow - - - Ctrl+O - Ctrl+O - - - Ctrl+N - Ctrl+N - - - SongMaintenanceForm - - - Couldn't add your author! - Couldn't add your author! - - - Ui_AlertEditDialog - - - Edit - Edit - - - Ui_EditSongDialog - - - Song Editor - Song Editor - - - AlertsTab - - - Font - Font - - - SlideController - - - Edit and re-preview Song - Edit and re-preview Song. - - - Delay between slides in seconds - Delay between slides in seconds. - - - MediaManagerItem - - - &Edit - + + + + AboutForm + + + About OpenLP + - - - Ui_AmendThemeDialog - - Vertical - Vertical - - - Width: - Width: - - - ThemeManager - - - You are unable to delete the default theme! - - - - - ThemesTab - - - Use the global theme, overriding any themes associated with either the service or the songs. - Use the global theme, overriding any themes associated with either the service or the songs. - - - BibleMediaItem - - - Version: - Version: - - - Ui_AboutDialog - - - OpenLP <version> build <revision> - Open Source Lyrics Projection + + OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - - - SongsPlugin - - - OpenLP 2.0 - OpenLP 2.0 - - - ServiceManager - - - New Service - New Service - - - Ui_TopicsDialog - - - Topic name: - Topic name: - - - ThemeManager - - - File is not a valid theme! - File is not a valid theme! - - - Ui_BibleImportWizard - - - License Details - License Details - - - Ui_AboutDialog - - - License - License - - - Ui_EditSongDialog - - - R&emove - - - - - Ui_AmendThemeDialog - - - Middle - Middle - - - Ui_customEditDialog - - - Save - Save - - - AlertEditForm - - - Item selected to Edit - Item selected to Edit - - - BibleMediaItem - - - From: - From: - - - Ui_AmendThemeDialog - - - Shadow Color: - Shadow Color: - - - ServiceManager - - - &Notes - - - - - Ui_MainWindow - - - E&xit - - - - - Ui_OpenLPImportDialog - - - Close - Close - - - MainWindow - - - OpenLP Version Updated - OpenLP Version Updated - - - Ui_customEditDialog - - - Replace edited slide - Replace edited slide. - - - Add new slide at bottom - Add new slide at bottom. - - - EditCustomForm - - - You need to enter a title - You need to enter a title. - - - ThemeManager - - - Theme Exists - Theme Exists - - - Ui_MainWindow - - - &Help - - - - - Ui_EditVerseDialog - - - Bridge - Bridge - - - Ui_OpenSongExportDialog - - - OpenSong Song Exporter - OpenSong Song Exporter - - - Ui_AmendThemeDialog - - - Vertical Align: - Vertical Align: - - - TestMediaManager - - - Item2 - + - - Item1 - + + About + - - - Ui_AmendThemeDialog - - Top - Top - - - BiblesTab - - - Display Dual Bible Verses - Display Dual Bible Verses - - - Ui_MainWindow - - - Toggle Service Manager - Toggle Service Manager. - - - MediaManagerItem - - - &Add to Service - + + Project Lead + Raoul "superfly" Snyman + +Developers + Tim "TRB143" Bentley + Jonathan "gushie" Corwin + Michael "cocooncrash" Gorven + Scott "sguerrieri" Guerrieri + Raoul "superfly" Snyman + Martin "mijiti" Thompson + Jon "Meths" Tibble + +Contributors + Meinert "m2j" Jordan + Christian "crichter" Richter + Maikel Stuivenberg + Carsten "catini" Tingaard + +Testers + Philip "Phill" Ridout + Wesley "wrst" Stout (lead) + +Packagers + Thomas "tabthorpe" Abthorpe (FreeBSD) + Tim "TRB143" Bentley (Fedora) + Michael "cocooncrash" Gorven (Ubuntu) + Matthias "matthub" Hub (Mac OS X) + Raoul "superfly" Snyman (Windows) + + - - + + + Credits + + + + + Copyright © 2004-2010 Raoul Snyman +Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard + +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. + + +GNU GENERAL PUBLIC LICENSE +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification follow. + +GNU GENERAL PUBLIC LICENSE +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: + +a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. + +b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. + +c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. + +3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: + +a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. + +This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version', you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. + +<one line to give the program's name and a brief idea of what it does.> +Copyright (C) <year> <name of author> + +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it starts in an interactive mode: + +Gnomovision version 69, Copyright (C) year name of author +Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type "show w". +This is free software, and you are welcome to redistribute it under certain conditions; type "show c" for details. + +The hypothetical commands "show w" and "show c" should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than "show w" and "show c"; they could even be mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: + +Yoyodyne, Inc., hereby disclaims all copyright interest in the program "Gnomovision" (which makes passes at compilers) written by James Hacker. + +<signature of Ty Coon>, 1 April 1989 +Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. + + + + + License + License + + + + Contribute + + + + + Close + Close + + + + build %s + + + + + AlertsPlugin + + + &Alert + + + + + <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen + + + + + Show an alert message. + + + + + AlertsPlugin.AlertForm + + + Alert Message + Alert Message + + + + Alert &text: + + + + + &Parameter(s): + + + + + &New + &New + + + + &Save + + + + + &Delete + + + + + Displ&ay + + + + + Display && Cl&ose + + + + + &Close + + + + + New Alert + + + + + You haven't specified any text for your alert. Please type in some text before clicking New. + + + + + AlertsPlugin.AlertsManager + + + Alert message created and displayed. + + + + + AlertsPlugin.AlertsTab + + + Alerts + + + + + Font + Font + + + + Font Name: + Font Name: + + + + Font Color: + Font Colour: + + + + Background Color: + + + + + Font Size: + + + + + pt + pt + + + + Alert timeout: + + + + + s + + + + + Location: + Location: + + + + Preview + Preview + + + + openlp.org + + + + + Top + + + + + Middle + Middle + + + + Bottom + + + + AmendThemeForm - - First Color: - First Colour: - - - ThemesTab - - - Song level - Song level - - - alertsPlugin - - - Show an alert message - Show an alert message. - - - Ui_MainWindow - - - Ctrl+F1 - Ctrl+F1 - - - Save the current service under a new name - Save the current service under a new name. - - - Ui_OpenLPExportDialog - - - Remove Selected - Remove Selected - - - ThemeManager - - - Delete theme - Delete theme - - - ImageTab - - - Image Settings - Image Settings - - - Ui_OpenSongImportDialog - - - OpenSong Song Importer - OpenSong Song Importer - - - SongUsagePlugin - - - &Extract recorded data - - - - - AlertsTab - - - Font Name: - Font Name: - - - Ui_MainWindow - - - &Web Site - - - - - MediaManagerItem - - - Send the selected item live - Send the selected item live. - - - Ui_MainWindow - - - M&ode - + + Theme Maintenance + Theme Maintenance - - Translate the interface to your language - Translate the interface to your language. - - - Service Manager - Service Manager - - - CustomMediaItem - - - Custom - Custom - - - ImageMediaItem - - - No items selected... - No items selected... - - - Ui_BibleImportWizard - - - OSIS - OSIS - - - SongsPlugin - - - openlp.org 1.0 - openlp.org 1.0 - - - Ui_MainWindow - - - &Theme - + + &Visibility: + - - - Ui_EditVerseDialog - - Edit Verse - Edit Verse - - - Ui_MainWindow - - - &Language - + + Opaque + Opaque - - - ServiceManager - - Move to end - Move to the end - - - Your service is unsaved, do you want to save those changes before creating a new one ? - Your service is unsaved. Do you want to save those changes before creating a new one? - - - Ui_OpenSongExportDialog - - - Remove Selected - Remove Selected - - - SongMediaItem - - - Search: - Search: - - - MainWindow - - - Save Changes to Service? - Save Changes to Service? - - - Your service has changed, do you want to save those changes? - Your service has changed. Do you want to save those changes? - - - EditSongForm - - - Invalid verse entry - values must be Numeric, I,B,C,T,P,E,O - Invalid verse entry - values must be Numeric, I,B,C,T,P,E,O - - - Ui_EditSongDialog - - - &Add to Song - + + Transparent + Transparent - - - Ui_MainWindow - - &About - + + Type: + Type: - - - BiblesTab - - Only show new chapter numbers - Only show new chapter numbers - - - ImportWizardForm - - - You need to specify a version name for your Bible! - You need to specify a version name for the Bible! - - - Ui_AlertEditDialog - - - Delete - Delete - - - EditCustomForm - - - Error - Error - - - ThemesTab - - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - - - SongMaintenanceForm - - - This topic can't be deleted, it is currently assigned to at least one song! - This topic can't be deleted - it is currently assigned to at least one song! - - - AlertEditForm - - - Item selected to Add - Item selected to Add - - - Ui_AmendThemeDialog - - - Right - Right - - - ThemeManager - - - Save Theme - (%s) - Save Theme - (%s) - - - ImageMediaItem - - - Allow background of live slide to be overridden - Allow background of live slide to be overridden. - - - MediaManagerItem - - - Add the selected item(s) to the service - Add the selected item(s) to the service. - - - AuthorsForm - - - Error - Error - - - BibleMediaItem - - - Book: - Book: - - - Ui_AmendThemeDialog - - - Font Color: - Font Colour: - - - Ui_OpenLPImportDialog - - - Select openlp.org songfile to import: - Select openlp.org songfile to import: - - - Ui_SettingsDialog - - - Settings - Settings - - - BiblesTab - - - Layout Style: - Layout Style: - - - MediaManagerItem - - - Edit the selected - Edit the selected - - - SlideController - - - Move to next - Move to next slide. - - - Ui_MainWindow - - - &Plugin List - + + Solid Color + Solid Colour - - + + + Gradient + + + + + Image + + + + + Image: + + + + + Gradient: + + + + + Horizontal + Horizontal + + + + Vertical + Vertical + + + + Circular + Circular + + + + &Background + + + + + Main Font + Main Font + + + + Font: + + + + + Color: + + + + + Size: + + + + + pt + pt + + + + Wrap indentation: + + + + + Adjust line spacing: + + + + + Normal + Normal + + + + Bold + Bold + + + + Italics + Italics + + + + Bold/Italics + + + + + Style: + + + + + Display Location + + + + + X position: + + + + + Y position: + + + + + Width: + Width: + + + + Height: + Height: + + + + px + px + + + + &Main Font + + + + + Footer Font + Footer Font + + + + &Footer Font + + + + + Outline + Outline + + + + Outline size: + + + + + Outline color: + + + + + Show outline: + + + + + Shadow + Shadow + + + + Shadow size: + + + + + Shadow color: + + + + + Show shadow: + + + + + Alignment + Alignment + + + + Horizontal align: + + + + + Left + + + + + Right + Right + + + + Center + Centre + + + + Vertical align: + + + + + Top + + + + + Middle + Middle + + + + Bottom + + + + + Slide Transition + Slide Transition + + + + &Other Options + + + + + Preview + Preview + + + + All Files + + + + + Select Image + + + + + First color: + + + + + Second color: + + + + + Slide height is %s rows. + + + + + Theme &name: + + + + + Use default location + + + + + Transition active + + + + + BibleDB + + + Book not found + + + + BiblePlugin - - &Bible - + + <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. + <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - - - Ui_BibleImportWizard - - Web Download - Web Download - - - Ui_AmendThemeDialog - - - Horizontal - Horizontal - - - ImportWizardForm - - - Open OSIS file - Open OSIS File - - - Ui_AmendThemeDialog - - - Circular - Circular - - - pt - pt - - - Ui_MainWindow - - - &Add Tool... - + + &Bible + - - - SongMaintenanceForm + + + BiblesPlugin,BiblesTab - - Delete Topic - Delete Topic - - - ServiceManager - - - Move up - Move Up - - - Ui_OpenLPImportDialog - - - Lyrics - Lyrics - - - BiblesTab - - - No brackets - No Brackets - - - Ui_AlertEditDialog - - - Maintain Alerts - Maintain Alerts - - - Ui_AmendThemeDialog - - - px - px - - - ServiceManager - - - Select a theme for the service - Select a theme for the service. - - - ThemesTab - - - Themes - Themes - - - ServiceManager - - - Move to bottom - Move to Bottom - - - Ui_PluginViewDialog - - - Status: - Status: - - - Ui_EditSongDialog - - - CCLI Number: - CCLI Number: - - - ImportWizardForm - - - This Bible already exists! Please import a different Bible or first delete the existing one. - This Bible already exists! Please import a different Bible or first delete the existing one. - - - Ui_MainWindow - - - &Translate - + + Bibles + Bibles - - - AlertEditForm + + + BiblesPlugin.BiblesTab - - Please Save or Clear seletced item - Please save or clear the selected item. - - - BiblesTab + + Verse Display + Verse Display + - - Bibles - Bibles - - - Ui_SongMaintenanceDialog + + Only show new chapter numbers + Only show new chapter numbers + - - Authors - Authors - - - SongUsageDetailForm + + Layout style: + + - - Output File Location - Output File Location - - - BiblesTab + + Display style: + + - - { and } - { and } - - + + Bible theme: + + + + + Verse Per Slide + + + + + Verse Per Line + + + + + Continuous + + + + + No Brackets + + + + + ( And ) + + + + + { And } + + + + + [ And ] + + + + + Note: +Changes do not affect verses already in the service. + + + + + Display dual Bible verses + + + + + BiblesPlugin.ImportWizardForm + + + Bible Import Wizard + Bible Import Wizard + + + + Welcome to the Bible Import Wizard + + + + + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + + + + Select Import Source + Select Import Source + + + + Select the import format, and where to import from. + + + + + Format: + Format: + + + + OSIS + OSIS + + + + CSV + CSV + + + + OpenSong + OpenSong + + + + Web Download + Web Download + + + + File location: + + + + + Books location: + + + + + Verse location: + + + + + Bible filename: + + + + + Location: + Location: + + + + Crosswalk + Crosswalk + + + + BibleGateway + BibleGateway + + + + Bible: + Bible: + + + + Download Options + Download Options + + + + Server: + Server: + + + + Username: + Username: + + + + Password: + + + + + Proxy Server (Optional) + + + + + License Details + License Details + + + + Set up the Bible's license details. + Set up the Bible's license details. + + + + Version name: + + + + + Copyright: + Copyright: + + + + Permission: + Permission: + + + + Importing + + + + + Please wait while your Bible is imported. + + + + + Ready. + + + + + Invalid Bible Location + Invalid Bible Location + + + + You need to specify a file to import your Bible from. + + + + + Invalid Books File + + + + + You need to specify a file with books of the Bible to use in the import. + + + + + Invalid Verse File + + + + + You need to specify a file of Bible verses to import. + + + + + Invalid OpenSong Bible + Invalid OpenSong Bible + + + + You need to specify an OpenSong Bible file to import. + + + + + Empty Version Name + Empty Version Name + + + + You need to specify a version name for your Bible. + + + + + Empty Copyright + Empty Copyright + + + + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + + + + Bible Exists + Bible Exists + + + + This Bible already exists! Please import a different Bible or first delete the existing one. + This Bible already exists! Please import a different Bible or first delete the existing one. + + + + Open OSIS File + + + + + Open Books CSV File + + + + + Open Verses CSV File + + + + + Open OpenSong Bible + + + + + Starting import... + Starting import... + + + + Finished import. + Finished import. + + + + Your Bible import failed. + Your Bible import failed. + + + + BiblesPlugin.MediaItem + + + Bible + Bible + + + + Quick + Quick + + + + Advanced + + + + + Version: + + + + + Dual: + Dual: + + + + Search type: + + + + + Find: + Find: + + + + Search + Search + + + + Results: + Results: + + + + Book: + Book: + + + + Chapter: + Chapter: + + + + Verse: + + + + + From: + From: + + + + To: + + + + + Verse Search + Verse Search + + + + Text Search + Text Search + + + + Clear + + + + + Keep + Keep + + + + No Book Found + + + + + No matching book could be found in this Bible. + No matching book could be found in this Bible. + + + + etc + + + + + Bible not fully loaded. + + + + + BiblesPlugin.Opensong + + + Importing + + + + + CustomPlugin + + + <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> + + + + + CustomPlugin.CustomTab + + + Custom + Custom + + + + Custom Display + Custom Display + + + + Display footer + + + + + CustomPlugin.EditCustomForm + + + Edit Custom Slides + Edit Custom Slides + + + + Move slide up once position. + + + + + Move slide down one position. + + + + + &Title: + + + + + Add New + + + + + Add a new slide at bottom. + + + + + Edit + + + + + Edit the selected slide. + + + + + Edit All + + + + + Edit all the slides at once. + + + + + Save + Save + + + + Save the slide currently being edited. + + + + + Delete + + + + + Delete the selected slide. + + + + + Clear + + + + + Clear edit area + + + + + Split Slide + + + + + Split a slide into two by inserting a slide splitter. + + + + + The&me: + + + + + &Credits: + + + + + Save && Preview + + + + + Error + Error + + + + You need to type in a title. + + + + + You need to add at least one slide + + + + + You have one or more unsaved slides, please either save your slide(s) or clear your changes. + + + + + CustomPlugin.MediaItem + + + Custom + Custom + + + + You haven't selected an item to edit. + + + + + You haven't selected an item to delete. + + + + + DisplayTab + + + Displays + + + + + Default Settings + + + + + X: + + + + + Y: + + + + + Height: + Height: + + + + Width: + Width: + + + + Custom Settings + + + + + Width + + + + + Override display settings + + + + GeneralTab - - Prompt to save Service before starting New - Prompt to save the service before starting new - - - ImportWizardForm - - - Starting import... - Starting import... - - - BiblesTab - - - Note: -Changes don't affect verses already in the service - Note: -Changes don't affect verses already in the service - - - Ui_EditVerseDialog - - - Intro - Intro - - - ServiceManager - - - Move up order - Move up order. - - - PresentationTab - - - available - available - - - ThemeManager - - - default - default - - - SongMaintenanceForm - - - Delete Author - - - - - Ui_AmendThemeDialog - - - Display Location - - - - - Ui_PluginViewDialog - - - Version: - - - - - Ui_AlertEditDialog - - - Add - - - - - GeneralTab - - - General - - - - - Ui_AmendThemeDialog - - - Y Position: - - - - - ServiceManager - - - Move down order - - - - - BiblesTab - - - verse per slide - - - - - Ui_AmendThemeDialog - - - Show Shadow: - - - - - AlertsTab - - - Preview - - - - - alertsPlugin - - - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - - - - - GeneralTab - - - Show the splash screen - - - - - Ui_MainWindow - - - New Service - - - - - SlideController - - - Move to first - - - - - Ui_MainWindow - - - &Online Help - - - - - SlideController - - - Blank Screen - - - - - Ui_MainWindow - - - Save Service - - - - - Save &As... - - - - - Toggle the visibility of the Media Manager - - - - - BibleMediaItem - - - No Book Found - - - - - Ui_EditSongDialog - - - Add - - - - - alertsPlugin - - - &Alert - - - - - BibleMediaItem - - - Advanced - - - - - ImageMediaItem - - - Image(s) - - - - - Ui_MainWindow - - - F11 - - - - - F10 - - - - - F12 - - - - - Ui_BibleImportWizard - - - Select the import format, and where to import from. - - - - - Ui_MainWindow - - - Alt+F7 - - - - - Add an application to the list of tools - - - - - MediaPlugin - - - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - - - - - BiblesTab - - - Bible Theme: - - - - - SongsPlugin - - - Export songs in openlp.org 1.0 format - - - - - Ui_MainWindow - - - Theme Manager - - - - - AlertsTab - - - Alerts - - - - - Ui_customEditDialog - - - Move slide down 1 - - - - - Ui_AmendThemeDialog - - - Font: - - - - - ServiceManager - - - Load an existing service - - - - - Ui_MainWindow - - - Toggle the visibility of the Theme Manager - - - - - PresentationTab - - - Presentations - - - - - SplashScreen - - - Starting - - - - - ImageTab - - - Slide Loop Delay: - - - - - SlideController - - - Verse - - - - - AlertsTab - - - Alert timeout: - - - - - Ui_MainWindow - - - &Preview Pane - - - - - MediaManagerItem - - - Add a new - - - - - ThemeManager - - - Select Theme Import File - - - - - New Theme - - - - - MediaMediaItem - - - Media - - - - - Ui_AmendThemeDialog - - - Preview - - - - - Outline Size: - - - - - Ui_OpenSongExportDialog - - - Progress: - - - - - AmendThemeForm - - - Second Color: - - - - - Ui_EditSongDialog - - - Theme, Copyright Info && Comments - - - - - Ui_AboutDialog - - - Credits - - - - - BibleMediaItem - - - To: - - - - - Ui_EditSongDialog - - - Song Book - - - - - alertsPlugin - - - F7 - - - - - Ui_OpenLPExportDialog - - - Author - - - - - Ui_AmendThemeDialog - - - Wrap Indentation - - - - - ThemeManager - - - Import a theme - - - - - PresentationPlugin - - - <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - - - - - ImageMediaItem - - - Image - - - - - BibleMediaItem - - - Clear - - - - - Ui_MainWindow - - - Save Service As - - - - - Ui_AlertDialog - - - Cancel - - - - - Ui_OpenLPImportDialog - - - Import - - - - - Ui_EditVerseDialog - - - Chorus - - - - - Ui_EditSongDialog - - - Edit All - - - - - AuthorsForm - - - You need to type in the last name of the author. - - - - - SongsTab - - - Songs Mode - - - - - Ui_AmendThemeDialog - - - Left - - - - - RemotesPlugin - - - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer.<br>The Primary use for this would be to send alerts from a creche - - - - - ImageTab - - - Images - - - - - BibleMediaItem - - - Verse: - - - - - Ui_OpenLPExportDialog - - - openlp.org Song Exporter - - - - - Song Export List - - - - - ThemeManager - - - Export theme - - - - - Ui_SongMaintenanceDialog - - - Delete - - - - - Ui_AmendThemeDialog - - - Theme Name: - - - - - Ui_AboutDialog - - - About OpenLP - - - - - Ui_MainWindow - - - Toggle the visibility of the Service Manager - - - - - PresentationMediaItem - - - A presentation with that filename already exists. - - - - - AlertsTab - - - openlp.org - + + CCLI Details + CCLI Details - - - ImportWizardForm - - Invalid Books File - + + primary + primary - - - Ui_OpenLPImportDialog - - Song Title - + + Show blank screen warning + Show blank screen warning - - - MediaManagerItem - - &Show Live - + + Application Startup + Application Startup - - - AlertsTab - - Keep History: - + + Select monitor for output display: + Select monitor for output display: - - - Ui_AmendThemeDialog - - Image: - + + Application Settings + Application Settings - - - Ui_customEditDialog - - Set Theme for Slides - + + SongSelect Username: + SongSelect Username: - - - Ui_MainWindow - - More information about OpenLP - + + CCLI Number: + CCLI Number: - - - AlertsTab - - Background Color: - + + Automatically open the last service + Automatically open the last service - - - SongMaintenanceForm - - No topic selected! - + + Preview Next Song from Service Manager + Preview Next Song from Service Manager - - - Ui_MainWindow - - &Media Manager - + + Prompt to save Service before starting New + Prompt to save the service before starting new - - &Tools - + + General + - - - AmendThemeForm - - Background Color: - + + Show the splash screen + - - - Ui_EditSongDialog - - A&dd to Song - + + Screen + - - Title: - + + Monitors + - - - GeneralTab - - Screen - + + SongSelect Password: + - - - AlertsTab - - s - + + Display if a single screen + - - + + ImagePlugin - - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any somgs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> - + + <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> + - - - Ui_AlertEditDialog + + + ImagePlugin.ImageTab - - Clear - - - - - Ui_BibleImportWizard - - - Please wait while your Bible is imported. - - - - - MediaManagerItem - - - No items selected... - - - - - Ui_OpenLPImportDialog - - - Select All - - - - - Ui_AmendThemeDialog - - - Font Main - - - - - ImageMediaItem - - - Images (*.jpg *jpeg *.gif *.png *.bmp) - - - - - Ui_OpenLPImportDialog - - - Title - - - - - Ui_OpenSongExportDialog - - - Select OpenSong song folder: - - - - - Ui_MainWindow - - - Toggle Media Manager - - - - - SongUsagePlugin - - - &Song Usage - - - - - GeneralTab - - - Monitors - - - - - EditCustomForm - - - You need to enter a slide - - - - - Ui_SongMaintenanceDialog - - - Topics - - - - - ImportWizardForm - - - You need to specify a file to import your Bible from! - - - - - Ui_EditVerseDialog - - - Verse Type - - - - - OpenSongBible - - - Importing - - - - - Ui_EditSongDialog - - - Comments - - - - - AlertsTab - - - Bottom - - - - - Ui_MainWindow - - - Create a new Service - - - - - AlertsTab - - - Top - - - - - ServiceManager - - - &Preview Verse - - - - - Ui_PluginViewDialog - - - TextLabel - - - - - AlertsTab - - - Font Size: - - - - - Ui_PluginViewDialog - - - About: - + + Images + - - Inactive - - - - - Ui_OpenSongExportDialog - - - Ready to export - + + Image Settings + Image Settings - - Export - + + Slide Loop Delay: + - - - Ui_PluginViewDialog - - Plugin List - + + sec + sec - - - Ui_AmendThemeDialog + + + ImagePlugin.MediaItem - - Transition Active: - + + Image + - - - Ui_BibleImportWizard - - Proxy Server (Optional) - + + Select Image(s) + Select Image(s) - - - Ui_EditSongDialog - - &Manage Authors, Topics, Books - + + All Files + - - - Ui_SongUsageDetailDialog - - Audit Detail Extraction - + + Replace Live Background + - - - Ui_OpenLPExportDialog - - Ready to export - + + You must select an item to delete. + - - - EditCustomForm - - Save && Preview - + + Image(s) + - - - Ui_OpenLPExportDialog - - Select All - + + You must select an item to process. + - - - Ui_SongUsageDetailDialog + + + LanguageManager - - to - + + Language + - - - Ui_AmendThemeDialog - - Size: - + + After restart new Language settings will be used. + - - + + MainWindow - - OpenLP Main Display Blanked - - - - - Ui_OpenLPImportDialog - - - Remove Selected - - - - - Ui_EditSongDialog - - - Delete - - - - - ImportWizardForm - - - You need to specify an OpenSong Bible file to import! - - - - - PresentationMediaItem - - - File exists - - - - - Ui_OpenLPExportDialog - - - Title - - - - - Ui_OpenSongImportDialog - - - Ready to import - - - - - SlideController - - - Stop continuous loop - + + The Main Display has been blanked out + The Main Display has been blanked out - - s - + + OpenLP Version Updated + OpenLP Version Updated - - - SongMediaItem - - Song Maintenance - + + Save Changes to Service? + Save Changes to Service? - - - Ui_customEditDialog - - Edit - + + OpenLP Main Display Blanked + - - - Ui_AmendThemeDialog - - Gradient : - + + OpenLP 2.0 + - - - ImportWizardForm - - Invalid Verse File - + + English + English - - - EditSongForm - - Error - + + &File + &File - - - Ui_customEditDialog - - Add New - + + &Import + &Import - - - Ui_AuthorsDialog - - Display name: - + + &Export + &Export - - - SongMaintenanceForm - - Are you sure you want to delete the selected topic? - + + &View + &View - - - Ui_AmendThemeDialog - - Bold/Italics - + + M&ode + - - - Ui_SongMaintenanceDialog - - Song Maintenance - + + &Tools + - - - Ui_BibleImportWizard - - Welcome to the Bible Import Wizard - + + &Settings + &Settings - - - SongsTab - - Songs - + + &Language + - - - Ui_BibleImportWizard - - Password: - + + &Help + - - - Ui_MainWindow - - &Theme Manager - + + Media Manager + Media Manager - - + + + Service Manager + Service Manager + + + + Theme Manager + + + + + &New + &New + + + + New Service + New Service + + + + Create a new service. + + + + + Ctrl+N + Ctrl+N + + + + &Open + &Open + + + + Open Service + Open Service + + + + Open an existing service. + + + + + Ctrl+O + Ctrl+O + + + + &Save + + + + + Save Service + Save Service + + + + Save the current service to disk. + + + + + Ctrl+S + Ctrl+S + + + + Save &As... + + + + + Save Service As + + + + + Save the current service under a new name. + + + + + Ctrl+Shift+S + + + + + E&xit + + + + + Quit OpenLP + Quit OpenLP + + + + Alt+F4 + Alt+F4 + + + + &Theme + + + + + &Configure OpenLP... + + + + + &Media Manager + + + + + Toggle Media Manager + + + + + Toggle the visibility of the media manager. + + + + + F8 + F8 + + + + &Theme Manager + + + + + Toggle Theme Manager + Toggle Theme Manager + + + + Toggle the visibility of the theme manager. + + + + + F10 + + + + + &Service Manager + &Service Manager + + + + Toggle Service Manager + Toggle Service Manager. + + + + Toggle the visibility of the service manager. + + + + + F9 + F9 + + + + &Preview Panel + &Preview Panel + + + + Toggle Preview Panel + Toggle Preview Panel + + + + Toggle the visibility of the preview panel. + + + + + F11 + + + + + &Live Panel + + + + + Toggle Live Panel + + + + + Toggle the visibility of the live panel. + + + + + F12 + + + + + &Plugin List + + + + + List the Plugins + List the plugins + + + + Alt+F7 + Alt+F7 + + + + &User Guide + &User Guide + + + + &About + + + + + More information about OpenLP + + + + + Ctrl+F1 + Ctrl+F1 + + + + &Online Help + + + + + &Web Site + + + + + &Auto Detect + + + + + Use the system language, if available. + + + + + Set the interface language to %s + + + + + Add &Tool... + + + + + Add an application to the list of tools. + + + + + &Default + + + + + Set the view mode back to the default. + + + + + &Setup + + + + + Set the view mode to Setup. + + + + + &Live + &Live + + + + Set the view mode to Live. + + + + + Version %s of OpenLP is now available for download (you are currently running version %s). + +You can download the latest version from http://openlp.org + + + + + Your service has changed. Do you want to save those changes? + + + + + Default Theme: %s + + + + MediaManagerItem - - Preview the selected item - + + You must select one or more items + You must select one or more items - - - Ui_BibleImportWizard - - Version Name: - + + Delete the selected item + Delete the selected item - - - Ui_AboutDialog - - About - + + &Add to Service + - - - MediaMediaItem - - Select Media - + + Send the selected item live + Send the selected item live. - - - Ui_AmendThemeDialog - - Horizontal Align: - + + Add the selected item(s) to the service + Add the selected item(s) to the service. - - + + + &Show Live + + + + + Preview the selected item + + + + + No Items Selected + + + + + Import %s + + + + + Import a %s + + + + + Load %s + + + + + Load a new %s + + + + + New %s + + + + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Preview %s + + + + + Add %s to Service + + + + + &Edit %s + + + + + &Delete %s + + + + + &Preview %s + + + + + &Add to selected Service Item + + + + + You must select one or more items to preview. + + + + + You must select one or more items to send live. + + + + + You must select one or more items. + + + + + No items selected + + + + + No Service Item Selected + + + + + You must select an existing service item to add to. + + + + + Invalid Service Item + + + + + You must select a %s service item. + + + + + MediaPlugin + + + <b>Media Plugin</b><br>This plugin allows the playing of audio and video media + + + + + MediaPlugin.MediaItem + + + Media + + + + + Select Media + + + + + Replace Live Background + + + + + You must select an item to delete. + + + + + OpenLP + + + Image Files + + + + + PluginForm + + + Plugin List + + + + + Plugin Details + Plugin Details + + + + Version: + + + + + TextLabel + + + + + About: + + + + + Status: + Status: + + + + Active + Active + + + + Inactive + + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + + + + + PresentationPlugin + + + <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + + + + PresentationPlugin.MediaItem + + + Presentation + Presentation + + + + Select Presentation(s) + + + + + Automatic + + + + + Present using: + Present using: + + + + File exists + + + + + A presentation with that filename already exists. + + + + + You must select an item to delete. + + + + + PresentationPlugin.PresentationTab + + + Presentations + + + + + Available Controllers + Available Controllers + + + + available + available + + + + RemotePlugin + + + <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer via a web browser or other app<br>The Primary use for this would be to send alerts from a creche + + + + + RemotePlugin.RemoteTab + + + Remotes + Remotes + + + + Remotes Receiver Port + Remotes Receiver Port + + + + ServiceItemEditForm + + + Service Item Maintenance + + + + + Up + + + + + Delete + + + + + Down + + + + ServiceManager - - &Edit Item - - - - - Ui_AmendThemeDialog - - - Background Type: - - - - - Ui_MainWindow - - - &Save - + + Save Changes to Service? + Save Changes to Service? - - OpenLP 2.0 - + + 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 + + + Settings + Settings + + + + 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 + + + &Delete recorded data + &Delete recorded data + + + + Start/Stop live song usage recording + Start/Stop live song usage recording + + + + <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service + <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service + + + + Delete song usage to specified date + Delete song usage to specified date + + + + Generate report on Song Usage + Generate report on Song Usage + + + + Song Usage Status + Song Usage Status + + + + &Extract recorded data + + + + + &Song Usage + + + + + SongsPlugin + + + &Song + &Song + + + + Import songs using the import wizard. + + + + + Songs of Fellowship (temp menu item) + + + + + Import songs from the VOLS1_2.RTF, sof3words.rtf and sof4words.rtf supplied with the music books + + + + + Generic Document/Presentation Import (temp menu item) + + + + + Import songs from Word/Writer/Powerpoint/Impress + + + + + Open Songs of Fellowship file + + + + + Import Error + + + + + Error importing Songs of Fellowship file. +OpenOffice.org must be installed and you must be using an unedited copy of the RTF included with the Songs of Fellowship Music Editions + + + + + Open documents or presentations + + + + + <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + + + + + SongsPlugin.AuditDeleteDialog + + + Song Usage Delete + + + + + SongsPlugin.AuditDetailDialog + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + + + + + Report Location + Report Location + + + + SongsPlugin.AuthorsForm + + + Author Maintenance + Author Maintenance + + + + Display name: + + + + + First name: + First name: + + + + Last name: + Last name: + + + + Error + Error + + + + You need to type in the first name of the author. + You need to type in the first name of the author. + + + + You need to type in the last name of the author. + + + + + You haven't set a display name for the author, would you like me to combine the first and last names for you? + You haven't set a display name for the author, would you like me to combine the first and last names for you? + + + + SongsPlugin.EditSongForm + + + Song Editor + Song Editor + + + + &Title: + + + + + Alt&ernate Title: + + + + + &Lyrics: + + + + + &Verse Order: + + + + + &Add + + + + + &Edit + + + + + Ed&it All + + + + + &Delete + + + + + Title && Lyrics + Title && Lyrics + + + + Authors + Authors + + + + &Add to Song + + + + + &Remove + &Remove + + + + &Manage Authors, Topics, Books + + + + + Topic + Topic + + + + A&dd to Song + + + + + R&emove + + + + + Song Book + + + + + Authors, Topics && Book + Authors, Topics && Book + + + + Theme + Theme + + + + New &Theme + + + + + Copyright Information + Copyright Information + + + + © + + + + + CCLI Number: + CCLI Number: + + + + Comments + + + + + Theme, Copyright Info && Comments + + + + + Save && Preview + + + + + Add Author + + + + + This author does not exist, do you want to add them? + + + + + 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? + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + Edit Verse + + + + &Verse type: + + + + + &Insert + + + + + SongsPlugin.ImportWizardForm + + + No OpenLyrics Files Selected + + + + + You need to add at least one OpenLyrics song file to import from. + + + + + No OpenSong Files Selected + + + + + You need to add at least one OpenSong song file to import from. + + + + + No CCLI Files Selected + + + + + You need to add at least one CCLI file to import from. + + + + + No CSV File Selected + + + + + You need to specify a CSV file to import from. + + + + + Starting import... + Starting import... + + + + Song Import Wizard + + + + + Welcome to the Song Import Wizard + + + + + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. + + + + + Select Import Source + Select Import Source + + + + Select the import format, and where to import from. + + + + + Format: + Format: + + + + OpenLyrics + + + + + OpenSong + OpenSong + + + + CCLI + + + + + CSV + CSV + + + + Add Files... + + + + + Remove File(s) + + + + + Filename: + + + + + Browse... + + + + + Importing + + + + + Please wait while your songs are imported. + + + + + Ready. + + + + + %p% + + + + + SongsPlugin.MediaItem + + + Song + Song + + + + Song Maintenance + + + + + Maintain the lists of authors, topics and books + Maintain the lists of authors, topics and books + + + + Search: + Search: + + + + Type: + Type: + + + + Clear + + + + + Search + Search + + + + Titles + Titles + + + + Lyrics + Lyrics + + + + Authors + Authors + + + + %s (%s) + + + + + You must select an item to edit. + + + + + You must select an item to delete. + + + + + Delete song? + + + + + Delete %d songs? + + + + + Delete Confirmation + + + + + CCLI Licence: + CCLI License: + + + + SongsPlugin.SongBookForm + + + Edit Book + Edit Book + + + + &Name: + + + + + &Publisher: + + + + + Error + Error + + + + You need to type in a name for the book. + + + + + SongsPlugin.SongImport + + + copyright + + + + + © + + + + + SongsPlugin.SongMaintenanceForm + + + Song Maintenance + + + + + Authors + Authors + + + + Topics + + + + + Books/Hymnals + + + + + &Add + + + + + &Edit + + + + + &Delete + + + + + Error + Error + + + + Couldn't add your author. + + + + + Couldn't add your topic. + + + + + Couldn't add your book. + + + + + Couldn't save your author. + + + + + Couldn't save your topic. + + + + + Couldn't save your book. + + + + + Delete Author + + + + + Are you sure you want to delete the selected author? + Are you sure you want to delete the selected author? + + + + This author can't 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 can't 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 can't 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 + Output File Location + + + + SongsPlugin.SongsTab + + + Songs + + + + + Songs Mode + + + + + Enable search as you type + + + + + Display Verses on Live Tool bar + + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + + + + + Topic name: + Topic name: + + + + Error + Error + + + + You need to type in a topic name! + You need to type in a topic name! + + + + Splashscreen + + + Starting + + + + + Splash Screen + Splash Screen + + + ThemeManager - - A theme with this name already exists, would you like to overwrite it? - + + Import Theme + Import Theme - - - PresentationMediaItem - - Select Presentation(s) - + + Delete Theme + Delete Theme - - - ThemeManager - - Export a theme - + + Error + Error - - - AmendThemeForm - - Open file - + + Edit Theme + Edit Theme - - - Ui_TopicsDialog - - Topic Maintenance - + + Export Theme + Export Theme - - - Ui_customEditDialog - - Clear edit area - + + Theme Exists + Theme Exists - - - Ui_AmendThemeDialog - - Show Outline: - + + Save Theme - (%s) + Save Theme - (%s) - - - SongBookForm - - You need to type in a book name! - + + Select Theme Import File + - - - ImportWizardForm - - Open OpenSong Bible - + + New Theme + - - - Ui_MainWindow - - Look && &Feel - + + Create a new theme. + - - - Ui_BibleImportWizard - - Ready. - + + Edit a theme. + - - - ThemeManager - - You have not selected a theme! - + + Delete a theme. + - - - Ui_SongMaintenanceDialog - - Books/Hymnals - + + Import a theme. + - - - Ui_AboutDialog - - Contribute - + + Export a theme. + - - - Ui_AmendThemeDialog - - Gradient - + + &Edit Theme + - - - Ui_BibleImportWizard - - Books Location: - + + &Delete Theme + - - - Ui_OpenSongExportDialog - - Full Song List - + + Set As &Global Default + - - - GeneralTab - - SongSelect Password: - + + E&xport Theme + - - -Delete Selected Song Usage Events?Couldn't save your book.AutomaticMove to &bottomThis author can't be deleted, they are currently assigned to at least one song.Couldn't save your topic.Move to &topYou need to specify a file to import your Bible from.Song Usage ExtractionAllow the background of live slide to be overriddenYou are unable to delete the default theme.Couldn't save your author.<b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br>&Delete From ServiceImages (*.jpg *.jpeg *.gif *.png *.bmp);; All files (*)You need to specify a version name for your Bible.Couldn't add your topic.You need to specify a file of Bible verses to import.File is not a valid theme.This book can't be deleted, it is currently assigned to at least one song.<b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br>Please save or clear selected itemOpenLP Service Files (*.osz)Couldn't add your author.This topic can't be deleted, it is currently assigned to at least one song.Move &downAre you sure you want to delete selected Song Usage data?Add &Tool...Song Usage DeleteMove &upYou need to specify a file with books of the Bible to use in the import.<b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box.Couldn't add your book.You have not selected a theme.Select Date RangeYou need to specify an OpenSong Bible file to import. + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + You are unable to delete the default theme. + + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Theme (*.*) + + + + + File is not a valid theme. +The content encoding is not UTF-8. + + + + + File is not a valid theme. + + + + + A theme with this name already exists. Would you like to overwrite it? + + + + + ThemesTab + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + + + + Use the global theme, overriding any themes associated with either the service or the songs. + Use the global theme, overriding any themes associated with either the service or the songs. + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + + + + Themes + Themes + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + &Service Level + + + + + &Global Level + + + + + VerseType + + + Verse + + + + + Chorus + + + + + Bridge + Bridge + + + + Pre-Chorus + Pre-Chorus + + + + Intro + Intro + + + + Ending + Ending + + + + Other + Other + + + diff --git a/resources/i18n/openlp_es.ts b/resources/i18n/openlp_es.ts index 0c3b7bf14..3bf53b7d6 100644 --- a/resources/i18n/openlp_es.ts +++ b/resources/i18n/openlp_es.ts @@ -1,4253 +1,3775 @@ - - - - BibleMediaItem - - - Quick - Rápida - - - Ui_customEditDialog - - - Delete selected slide - Eliminar diap. seleccionada - - - BiblesTab - - - ( and ) - ( y ) - - - RemoteTab - - - Remotes - Remotas - - - ServiceManager - - - Save Service - Guardar Servicio - - - Ui_AmendThemeDialog - - - Shadow Size: - Tamaño: - - - Ui_OpenSongExportDialog - - - Close - Cerrar - - - ThemeManager - - - Import Theme - Importar Tema - - - Ui_AmendThemeDialog - - - Slide Transition - Transición de Diapositiva - - - ImportWizardForm - - - Bible Exists - Ya existe la Biblia - - - ThemesTab - - - Theme level - Nivel del Tema - - - BibleMediaItem - - - Bible - Biblia - - - ServiceManager - - - Save Changes to Service? - ¿Guardar cambios al Servicio? - - - SongUsagePlugin - - - &Delete recorded data - &Eliminar los datos guardados - - - Ui_OpenLPExportDialog - - - Song Title - Título de Canción - - - Ui_customEditDialog - - - Edit selected slide - Editar diap. seleccionada - - - SongMediaItem - - - CCLI Licence: - Licencia CCLI: - - - Ui_SongUsageDeleteDialog - - - Audit Delete - Eliminar Auditoría - - - BibleMediaItem - - - Clear - Limpiar - - - Ui_BibleImportWizard - - - Bible Import Wizard - Asistente de Importación de Biblias - - - Ui_customEditDialog - - - Edit All - Editar Todo - - - Ui_ServiceNoteEdit - - - Service Item Notes - Notas de Elemento de Servicio - - - SongMaintenanceForm - - - Couldn't save your author! - ¡No se puede guardar su autor! - - - Ui_customEditDialog - - - Clear - Limpiar - - - ThemesTab - - - Global theme - Tema Global - - - SongUsagePlugin - - - Start/Stop live song usage recording - Grabar los tiempos de la canción en vivo - - - MainWindow - - - The Main Display has been blanked out - La Pantalla Principal esta en negro - - - Ui_OpenSongExportDialog - - - Lyrics - Letra - - - Ui_AlertDialog - - - Display - Pantalla - - - Ui_customEditDialog - - - Delete - Eliminar - - - SongMaintenanceForm - - - This author can't be deleted, they are currently assigned to at least one song! - ¡Este autor no puede ser eliminado, está asignado a al menos una canción! - - - ThemeManager - - - Create a new theme - Crear un tema nuevo - - - Ui_MainWindow - - - Open an existing service - Abrir un servicio existente - - - SlideController - - - Move to previous - Regresar al anterior - - - Edit and re-preview Song - Editar y re-visualizar Canción - - - Ui_PluginViewDialog - - - Plugin Details - Detalles de Plugin - - - AlertsTab - - - pt - pt - - - Edit History: - Editar Historial: - - - SlideController - - - Delay between slides in seconds - Espera entre diapositivas en segundos - - - SongMaintenanceForm - - - Couldn't add your book! - ¡No se pudo agregar su libro! - - - BiblesTab - - - verse per line - versículo por línea - - - Ui_customEditDialog - - - Theme: - Tema: - - - SongMaintenanceForm - - - Error - Error - - - Ui_BibleImportWizard - - - Bible: - Biblia: - - - ImportWizardForm - - - You need to specify a file with books of the Bible to use in the import! - ¡Es necesario especificar un archivo con los libros de la Biblia para uso en la importación! - - - ThemeManager - - - Delete Theme - Eliminar Tema - - - SplashScreen - - - Splash Screen - Pantalla de Bienvenida - - - SongMediaItem - - - Song - Canción - - - SongUsageDeleteForm - - - Delete Selected Audit Events? - ¿Borrar la Selección de Eventos Auditados? - - - Ui_OpenSongExportDialog - - - Song Title - Título de Canción - - - BibleMediaItem - - - Search - Buscar - - - Ui_MainWindow - - - List the Plugins - Lista de PluginsUsar Complementos en ves de Plugins? - - - SongMaintenanceForm - - - No author selected! - ¡Ningún autor seleccionado! - - - SongUsagePlugin - - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - <b>SongUsage Plugin</b><br>Este plugin registra el uso de canciones y cuando se han utilizado durante un servicio en vivo - - - Ui_customEditDialog - - - Move slide Up 1 - Mover hacia Arriba 1 - - - SongsPlugin - - - OpenSong - OpenSong - - - AlertsManager - - - Alert message created and delayed - Mensaje de alerta creado y pospuesto - - - Ui_EditSongDialog - - - Alternative Title: - Título alternativo: - - - ServiceManager - - - Open Service - Abrir Servicio - - - BiblesTab - - - Display Style: - Mostar Como: - - - Ui_AmendThemeDialog - - - Image - Imagen - - - EditSongForm - - - You need to enter a song title. - Usted necesita introducir el título de la canción. - - - ThemeManager - - - Error - Error - - - ImportWizardForm - - - Invalid Bible Location - Ubicación de Biblia no válida - - - ThemesTab - - - Global level - Nivel Global - - - ThemeManager - - - Make Global - Establecer como GlobalAcortar? Hacer Global - - - Ui_MainWindow - - - &Service Manager - Gestor de &Servicio - - - Ui_OpenLPImportDialog - - - Author - Autor - - - Ui_AmendThemeDialog - - - Height: - Altura: - - - Ui_BibleImportWizard - - - Books Location: - Ubicación de los Libros: - - - ThemeManager - - - Delete a theme - Eliminar un tema - - - Ui_BibleImportWizard - - - Crosswalk - Crosswalk - - - SongBookForm - - - Error - Error - - - Ui_AuthorsDialog - - - Last name: - Apellido: - - - Ui_customEditDialog - - - Title: - Título: - - - ImportWizardForm - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - ¡Tiene que establecer los derechos de autor de la Biblia! Biblias de Dominio Público deben ser marcados como tales. - - - SongMediaItem - - - Maintain the lists of authors, topics and books - Administrar la lista de autores, categorías y libros - - - Ui_AlertEditDialog - - - Save - Guardar - - - EditCustomForm - - - You have unsaved data - Tiene información sin guardar - - - BibleMediaItem - - - To: - Hasta: - - - Ui_AmendThemeDialog - - - Outline - Contorno - - - BibleMediaItem - - - Text Search - Búsqueda de texto - - - Ui_OpenLPExportDialog - - - openlp.org Song Exporter - Exportador de Canciones openlp.orgAcortar? - - - SongUsagePlugin - - - Delete song usage to specified date - Eliminar el historial de uso hasta la fecha especificada - - - Ui_SongUsageDetailDialog - - - Report Location - Ubicación de Reporte - - - Ui_BibleImportWizard - - - OpenSong - OpenSong - - - Ui_MainWindow - - - Open Service - Abrir Servicio - - - SongMediaItem - - - Titles - Títulos - - - ImageMediaItem - - - Select Image(s) - Seleccionar Imagen(es) - - - BibleMediaItem - - - Search Type: - Tipo de búsqueda:Acortar? - - - Ui_MainWindow - - - Media Manager - Gestor de Medios - - - ImageMediaItem - - - Images (*.jpg *jpeg *.gif *.png *.bmp);; All files (*) - Imágenes (*.jpg *jpeg *.gif *.png *.bmp);; Todos los archivos (*) - - - Ui_MainWindow - - - Alt+F4 - Alt+F4 - - - MediaManagerItem - - - &Preview - Vista &previa - - - GeneralTab - - - CCLI Details - Detalles de CCLI - - - SongSelect Password: - Contraseña SongSelect: - - - Ui_MainWindow - - - Toggle the visibility of the Preview Panel - Alternar la visibilidad del Panel de Vista Previa - - - SongMaintenanceForm - - - Are you sure you want to delete the selected book? - ¿Está seguro de que quiere eliminar el libro seleccionado? - - - Ui_MainWindow - - - &User Guide - Guía de &Usuario - - - SongUsageDeleteForm - - - Are you sure you want to delete selected Audit Data? - ¿Está seguro que desea eliminar la selección de Datos Auditados? - - - Ui_MainWindow - - - Set the interface language to English - Establecer el idioma de la interfaz a Inglés - - - Ui_AmendThemeDialog - - - Main Font - Tipo de Letra Principal - - - ImportWizardForm - - - Empty Copyright - Derechos de autor en blanco - - - CustomPlugin - - - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> - <b>Custom Plugin</b><br>Este plugin permite que las diapositivas se muestren en la pantalla de la misma manera que las canciones. Este plugin proporciona una mayor libertad que el plugin de canciones.<br> - - - AuthorsForm - - - You need to type in the first name of the author. - Tiene que escribir el nombre del autor. - - - SongsTab - - - Display Verses on Live Tool bar: - Mostrar Versos en Barra En Vivo:Verses = Versículos? - - - ServiceManager - - - Move to top - Mover al principio - - - ImageMediaItem - - - Override background - Sustituir el fondo - - - Ui_SongMaintenanceDialog - - - Edit - Editar - - - Ui_OpenSongExportDialog - - - Select All - Seleccionar Todo - - - ThemesTab - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - Utilice el tema de cada canción en la base de datos. Si una canción no tiene un tema asociado, utilizar el tema del servicio. Si el servicio no tiene un tema, utilizar el tema global. - - - PresentationMediaItem - - - Presentation - Presentación - - - Ui_AmendThemeDialog - - - Solid Color - Color Sólido - - - CustomTab - - - Custom - Personalizado - - - Ui_OpenLPImportDialog - - - Ready to import - Listo para importar - - - MainWindow - - - OpenLP version %s has been updated to version %s - -You can obtain the latest version from http://openlp.org - OpenLP versión %s se ha actualizado a la versión %s - -Puede obtener la última versión desde http://openlp.org - - - Ui_BibleImportWizard - - - File Location: - Archivo: - - - SlideController - - - Go to Verse - Ir al Verso - - - Ui_MainWindow - - - &Import - &Importar - - - Quit OpenLP - Salir de OpenLP - - - Ui_BibleImportWizard - - - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - Este asistente le ayudará a importar Biblias en una variedad de formatos. Haga clic en el botón siguiente para empezar el proceso seleccionando un formato a importar. - - - Ui_OpenLPExportDialog - - - Title - Título - - - ImportWizardForm - - - Empty Version Name - Nombre de Versión Vacío - - - Ui_MainWindow - - - &Preview Panel - &Panel de Vista Previa - - - SlideController - - - Start continuous loop - Iniciar bucle continuo - - - Ui_AboutDialog - - - License - Licencia - - - GeneralTab - - - primary - primario - - - Ui_EditSongDialog - - - Add a Theme - Añadir un Tema - - - Ui_MainWindow - - - &New - &Nuevo - - - Ui_customEditDialog - - - Credits: - Créditos: - - - SlideController - - - Live - En vivo - - - ImportWizardForm - - - You need to specify a file of Bible verses to import! - ¡Es necesario especificar un archivo de versículos de la Biblia para importar! - - - BiblesTab - - - continuous - continuo - - - Ui_EditVerseDialog - - - Number - Número - - - GeneralTab - - - Application Startup - Inicio de la Aplicación - - - Ui_AmendThemeDialog - - - Use Default Location: - Usar Ubicación por Defecto: - - - Ui_OpenSongImportDialog - - - Import - Importar - - - Ui_MainWindow - - - Ctrl+N - Ctrl+N - - - Ui_EditSongDialog - - - Verse Order: - Orden de Versos: - - - Ui_SongUsageDetailDialog - - - ASelect Date Range - Seleccione el Rango de Fechas - - - Ui_MainWindow - - - Default Theme: - Tema por defecto: - - - Toggle Preview Panel - Alternar Panel de Vista Previa - - - SongMediaItem - - - Lyrics - Letra - - - Ui_OpenLPImportDialog - - - Progress: - Progreso: - - - Ui_AmendThemeDialog - - - Shadow - Sombra - - - GeneralTab - - - Select monitor for output display: - Seleccionar monitor para visualizar la salida: - - - Ui_AmendThemeDialog - - - Italics - Cursiva - - - ServiceManager - - - Create a new service - Crear un servicio nuevo - - - Ui_AmendThemeDialog - - - Background: - Fondo: - - - Ui_OpenLPImportDialog - - - openlp.org Song Importer - Importador de Canciones openlp.orgAcortar? - - - Ui_BibleImportWizard - - - Copyright: - Derechos de autor: - - - ThemesTab - - - Service level - Según Servicio - - - BiblesTab - - - [ and ] - [ y ] - - - Ui_customEditDialog - - - Save - Guardar - - - MediaManagerItem - - - You must select one or more items - Usted debe seleccionar uno o más elementos - - - GeneralTab - - - Application Settings - Configuración del Programa - - - ServiceManager - - - Save this service - Guardar este servicio - - - ImportWizardForm - - - Open Books CSV file - Abrir archivo de Libros CSV - - - GeneralTab - - - SongSelect Username: - Usuario SongSelect: - - - Ui_AmendThemeDialog - - - X Position: - Posición X: - - - BibleMediaItem - - - No matching book could be found in this Bible. - No se encuentra un libro que concuerde, en esta Biblia. - - - Ui_BibleImportWizard - - - Server: - Servidor: - - - Download Options - Opciones de Descarga - - - ImportWizardForm - - - Invalid OpenSong Bible - Biblia OpenSong No Válida - - - GeneralTab - - - CCLI Number: - Número CCLI: - - - Ui_AmendThemeDialog - - - Center - Centro - - - ServiceManager - - - Theme: - Tema: - - - Ui_MainWindow - - - &Live - En &vivo - - - SongMaintenanceForm - - - Delete Topic - Borrar CategoríaTraducir "Topic" como "Tema" puede confundirse con la traducción de "Theme" - - - Ui_MainWindow - - - English - Ingles - - - ImageMediaItem - - - You must select one or more items - Usted debe seleccionar uno o más elementos - - - Ui_AuthorsDialog - - - First name: - Nombre: - - - Ui_BibleImportWizard - - - Permission: - Permiso: - - - Ui_OpenSongImportDialog - - - Close - Cerrar - - - Ui_AmendThemeDialog - - - Opaque - Opaco - - - SongMaintenanceForm - - - This book can't be deleted, it is currently assigned to at least one song! - ¡Este libro no puede ser eliminado, está actualmente asignado a al menos una canción! - - - ImportWizardForm - - - Your Bible import failed. - La importación de su Biblia falló. - - - SlideController - - - Start playing media - Iniciar la reproducción de medios - - - SongMediaItem - - - Type: - Tipo: - - - Ui_AboutDialog - - - Close - Cerrar - - - TopicsForm - - - You need to type in a topic name! - ¡Usted tiene que escribir un nombre para la categoría! - - - Ui_OpenSongExportDialog - - - Song Export List - Lista de Exportación de CancionesAcortar? - - - BibleMediaItem - - - Dual: - Paralela:O Dual:? O Doble:? - - - ImageTab - - - sec - seg - - - ServiceManager - - - Delete From Service - Eliminar Del Servicio - - - GeneralTab - - - Automatically open the last service - Abrir automáticamente el último servicio - - - Ui_OpenLPImportDialog - - - Song Import List - Lista de Importación de Canciones - - - Ui_OpenSongExportDialog - - - Author - Autor - - - Ui_AmendThemeDialog - - - Outline Color: - Color: - - - Ui_BibleImportWizard - - - Select Import Source - Seleccione Origen de Importación - - - Ui_MainWindow - - - F9 - F9 - - - F8 - F8 - - - ServiceManager - - - &Change Item Theme - &Cambiar Tema de Ítem - - - Ui_SongMaintenanceDialog - - - Topics - Categoría - - - Ui_OpenLPImportDialog - - - Import File Song List - Importar Archivo de Lista de CancionesAcortar? - - - Ui_customEditDialog - - - Edit Custom Slides - Editar Diapositivas PersonalizadasAcortar? - - - Ui_EditSongDialog - - - &Remove - &Quitar - - - Ui_BibleImportWizard - - - Set up the Bible's license details. - Establezca los detalles de licencia de la Biblia. - - - Ui_AmendThemeDialog - - - Alignment - Alineación - - - SongMaintenanceForm - - - Delete Book - Eliminar Libro - - - ThemeManager - - - Edit a theme - Editar un tema - - - Ui_BibleImportWizard - - - BibleGateway - BibleGateway - - - GeneralTab - - - Preview Next Song from Service Manager - Vista Previa de la Siguiente Canción del ServicioSiguiente Canción en Cola? - - - Ui_EditSongDialog - - - Title && Lyrics - Título && Letra - - - SongMaintenanceForm - - - No book selected! - ¡Ningún libro seleccionado! - - - SlideController - - - Move to live - Proyectar en vivo - - - Ui_EditVerseDialog - - - Other - Otro - - - Ui_EditSongDialog - - - Theme - Tema - - - Ui_EditVerseDialog - - - Verse - Verso - - - Ui_MainWindow - - - Save the current service to disk - Guardar el servicio actual al disco - - - BibleMediaItem - - - Chapter: - Capítulo: - - - Ui_AmendThemeDialog - - - Bottom - Inferior - - - PresentationTab - - - Available Controllers - Controladores DisponiblesControles? - - - ImportWizardForm - - - Open Verses CSV file - Abrir archivo de Versículos CSV - - - TopicsForm - - - Error - Error - - - RemoteTab - - - Remotes Receiver Port - Puerto de Recepción - - - Ui_MainWindow - - - &View - &Ver - - - Ui_AmendThemeDialog - - - Normal - Normal - - - Ui_OpenLPExportDialog - - - Close - Cerrar - - - Ui_BibleImportWizard - - - Username: - Usuario: - - - ThemeManager - - - Edit Theme - Editar Tema - - - ServiceManager - - - &Preview Verse - &Previzualizar Verso - - - Ui_AlertDialog - - - Alert Message - Mensaje de Alerta - - - ImportWizardForm - - - Finished import. - Importación finalizada. - - - GeneralTab - - - Show blank screen warning - Mostrar advertencia de pantalla en blanco - - - AlertsTab - - - Location: - Ubicación: - - - Ui_EditSongDialog - - - Authors, Topics && Book - Autores, Categorías && Libros - - - EditSongForm - - - You need to enter some verses. - Debe ingresar algunos versículos. - - - BibleMediaItem - - - Bible not fully loaded - Biblia incompleta - - - CustomTab - - - Display Footer: - Mostrar Pie de Página:Acortar? Mostrar Pie: - - - BiblePlugin - - - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - <strong>Bible Plugin</strong><br />Este plugin permite visualizar versículos de la Biblia en la pantalla desde distintas fuentes durante el servicio. - - - Ui_EditSongDialog - - - Copyright Information - Información de Derechos de AutorAcortar? - - - Ui_MainWindow - - - &Export - &Exportar - - - Ui_AmendThemeDialog - - - Bold - Negrita - - - SongsPlugin - - - Export songs in OpenLP 2.0 format - Exportar canciones en formato OpenLP 2.0 - - - MediaManagerItem - - - Load a new - Cargar nuevo(a) - - - AlertEditForm - - - Missing data - Datos faltantes - - - SongsPlugin - - - <b>Song Plugin</b> <br>This plugin allows Songs to be managed and displayed.<br> - <b>Song Plugin</b> <br>Este plugin permite gestionar y mostrar las canciones.<br> - - - Ui_AmendThemeDialog - - - Footer Font - Fuente de Pie de Página - - - EditSongForm - - - Invalid verse entry - vX - Verso no válido - vX - - - BibleMediaItem - - - No Book Found - No se encontró el libro - - - Ui_OpenLPExportDialog - - - Export - Exportar - - - Ui_BibleImportWizard - - - Location: - Ubicación: - - - BibleMediaItem - - - Keep - Conservar - - - SongUsagePlugin - - - Generate report on Song Usage - Crear un reporte del Uso de las Canciones - - - Ui_EditSongDialog - - - Topic - Categoría - - - Ui_MainWindow - - - &Open - &Abrir - - - PresentationMediaItem - - - Present using: - Mostrar usando:Presentar? - - - ServiceManager - - - &Live Verse - Verso En &Vivo - - - Ui_EditVerseDialog - - - Pre-Chorus - Pre-Coro - - - Ui_EditSongDialog - - - Lyrics: - Letra: - - - Ui_AboutDialog - - - Project Lead - Raoul "superfly" Snyman - -Developers - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Testers - Wesley "wrst" Stout - Director del Proyecto -Raoul "superfly" Snyman - -Desarroladores -Tim "TRB143" Bentley -Jonathan "gushie" Corwin -Michael "cocooncrash" Gorven -Scott "sguerrieri" Guerrieri -Raoul "superfly" Snyman -Maikel Stuivenberg -Martin "mijiti" Thompson -Jon "Meths" Tibble -Carsten "catini" Tingaard - -Pruebas -Wesley "wrst" Stout - - - Ui_OpenLPExportDialog - - - Lyrics - Letra - - - AuthorsForm - - - You haven't set a display name for the author, would you like me to combine the first and last names for you? - No se ha puesto un nombre para el autor, ¿le gustaría que el nombre y los apellidos se combinen por usted? - - - SongMediaItem - - - Clear - Limpiar - - - AmendThemeForm - - - Slide Height is %s rows - Altura de Diapositiva es %s filas - - - Ui_OpenSongImportDialog - - - Progress: - Progreso: - - - Ui_MainWindow - - - Toggle Theme Manager - Alternar Gestor de Temas - - - Ui_AlertDialog - - - Alert Text: - Texto de Alerta: - - - Ui_EditSongDialog - - - Edit - Editar - - - AlertsTab - - - Font Color: - Color: - - - Ui_AmendThemeDialog - - - Theme Maintenance - Mantenimiento de Temas - - - CustomTab - - - Custom Display - Presentación Personalizada - - - Ui_OpenSongExportDialog - - - Title - Título - - - Ui_AmendThemeDialog - - - <Color1> - <Color1> - - - Ui_EditSongDialog - - - Authors - Autores - - - ThemeManager - - - Export Theme - Exportar Tema - - - ImageMediaItem - - - No items selected... - No hay ítems seleccionados... - - - Ui_SongBookDialog - - - Name: - Nombre: - - - Ui_AuthorsDialog - - - Author Maintenance - Mantenimiento de Autores - - - Ui_AmendThemeDialog - - - Font Footer - Pie de Página - - - Ui_MainWindow - - - &Settings - &Preferencias - - - &Options - &Opciones - - - BibleMediaItem - - - Results: - Resultados: - - - Ui_OpenLPExportDialog - - - Full Song List - Lista Completa de CancionesAcortar? - - - Ui_OpenSongImportDialog - - - OpenSong Folder: - Carpeta de OpenSong: - - - SlideController - - - Move to last - Mover al final - - - Ui_OpenLPExportDialog - - - Progress: - Progreso: - - - Ui_SongMaintenanceDialog - - - Add - Agregar - - - SongMaintenanceForm - - - Are you sure you want to delete the selected author? - ¿Está seguro que desea eliminar el autor seleccionado? - - - SongUsagePlugin - - - Song Usage Status - Estado de Uso de las Canciones - - - BibleMediaItem - - - Verse Search - Búsqueda de versículo - - - Ui_SongBookDialog - - - Edit Book - Editar Himnario - - - EditSongForm - - - Save && Preview - Guardar && Vista Previa - - - Ui_SongBookDialog - - - Publisher: - Editor:Publicador:? - - - Ui_AmendThemeDialog - - - Font Weight: - Tipo de Letra: - - - Ui_BibleImportWizard - - - Bible Filename: - Nombre de Biblia: - - - Ui_AmendThemeDialog - - - Transparent - Transparente - - - SongMediaItem - - - Search - Buscar - - - Ui_BibleImportWizard - - - Format: - Formato: - - - Ui_AmendThemeDialog - - - Background - Fondo - - - Ui_BibleImportWizard - - - Importing - Importando - - - Ui_customEditDialog - - - Edit all slides - Editar todas las diapositivasAcortar? - - - MediaMediaItem - - - Select Media - Seleccionar Medios - - - PresentationMediaItem - - - Select Presentation(s) - Seleccionar Presentación(es) - - - SongMediaItem - - - Authors - Autores - - - Ui_PluginViewDialog - - - Active - Activo - - - Ui_MainWindow - - - Save the current service under a new name - Guardar el servicio actual con un nuevo nombre - - - Ctrl+O - Ctrl+O - - - Ui_AmendThemeDialog - - - Other Options - Otras Opciones - - - SongMaintenanceForm - - - Couldn't add your author! - ¡No se pudo agregar su autor! - - - Ui_AlertEditDialog - - - Edit - Editar - - - Ui_EditSongDialog - - - Song Editor - Editor de Canción - - - AlertsTab - - - Font - Tipo de Letra - - - SongsPlugin - - - &Song - &Canción& where? - - - Ui_MainWindow - - - &File - &Archivo - - - MediaManagerItem - - - &Edit - &Editar - - - Ui_AmendThemeDialog - - - Vertical - Vertical - - - Width: - Ancho: - - - ThemeManager - - - You are unable to delete the default theme! - ¡Usted no puede eliminar el tema por defecto! - - - ThemesTab - - - Use the global theme, overriding any themes associated with either the service or the songs. - Utilice el tema global, ignorado los temas asociados con el servicio o con las canciones. - - - BibleMediaItem - - - Version: - Versión: - - - Ui_AboutDialog - - - OpenLP <version> build <revision> - Open Source Lyrics Projection + + + + AboutForm + + + About OpenLP + Acerca de OpenLP + + + + OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version> build <revision> - Open Source Lyrics Projection + + + + + About + Acerca De + + + + Project Lead + Raoul "superfly" Snyman -OpenLP es un programa gratuito de presentación para iglesias, o un programa de presentación de letras, usted to display slides of songs, Versículos, videos, imágenes, e incluso presentaciones (si OpenOffice.org, PowerPoint o PowerPoint Viewer esta instalado) para la alabanza, usando una computadora y un proyector de datos. +Developers + Tim "TRB143" Bentley + Jonathan "gushie" Corwin + Michael "cocooncrash" Gorven + Scott "sguerrieri" Guerrieri + Raoul "superfly" Snyman + Martin "mijiti" Thompson + Jon "Meths" Tibble -Más información en: http://openlp.org/ +Contributors + Meinert "m2j" Jordan + Christian "crichter" Richter + Maikel Stuivenberg + Carsten "catini" Tingaard -OpenLP es desarrollado y mantenido por voluntarios. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - SongsPlugin +Testers + Philip "Phill" Ridout + Wesley "wrst" Stout (lead) + +Packagers + Thomas "tabthorpe" Abthorpe (FreeBSD) + Tim "TRB143" Bentley (Fedora) + Michael "cocooncrash" Gorven (Ubuntu) + Matthias "matthub" Hub (Mac OS X) + Raoul "superfly" Snyman (Windows) + + + - - OpenLP 2.0 - OpenLP 2.0 - - - ServiceManager + + Credits + Créditos + - - New Service - Servicio Nuevo - - - Ui_TopicsDialog + + Copyright © 2004-2010 Raoul Snyman +Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard + +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. + + +GNU GENERAL PUBLIC LICENSE +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification follow. + +GNU GENERAL PUBLIC LICENSE +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: + +a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. + +b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. + +c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. + +3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: + +a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. + +This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version', you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. + +<one line to give the program's name and a brief idea of what it does.> +Copyright (C) <year> <name of author> + +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it starts in an interactive mode: + +Gnomovision version 69, Copyright (C) year name of author +Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type "show w". +This is free software, and you are welcome to redistribute it under certain conditions; type "show c" for details. + +The hypothetical commands "show w" and "show c" should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than "show w" and "show c"; they could even be mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: + +Yoyodyne, Inc., hereby disclaims all copyright interest in the program "Gnomovision" (which makes passes at compilers) written by James Hacker. + +<signature of Ty Coon>, 1 April 1989 +Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. + + - - Topic name: - Categoría:Nombre:? o Categoría:? - - - ThemeManager + + License + Licencia + - - File is not a valid theme! - ¡El archivo no es un tema válido! - - - Ui_BibleImportWizard + + Contribute + Contribuir + - - License Details - Detalles de Licencia - - - ServiceManager + + Close + Cerrar + - - Move down - Hacia abajo - - - Ui_EditSongDialog + + build %s + + + + + AlertsPlugin - - R&emove - &Quitar - - - Ui_AmendThemeDialog + + &Alert + &Alerta + - - Middle - Medio - - - Ui_BibleImportWizard + + <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen + <b>Alerts Plugin</b><br>Este plugin controla la visualización de alertas en la pantalla de presentaciones + - - Verse Location: - Versículos:Ubicación de Versículos: - - - AlertEditForm + + Show an alert message. + + + + + AlertsPlugin.AlertForm - - Item selected to Edit - Tema seleccionado para Editar - - - BibleMediaItem + + Alert Message + Mensaje de Alerta + - - From: - Desde: - - - Ui_AmendThemeDialog + + Alert &text: + + - - Shadow Color: - Color: - - - ServiceManager + + &Parameter(s): + + - - &Notes - &Notas - - - Ui_MainWindow + + &New + &Nuevo + - - E&xit - &Salir - - - Ui_OpenLPImportDialog + + &Save + &Guardar + - - Close - Cerrar - - - MainWindow + + &Delete + + - - OpenLP Version Updated - Versión de OpenLP Actualizada - - - Ui_customEditDialog + + Displ&ay + + - - Replace edited slide - Reemplazar diapositiva editadaAcortar? + + Display && Cl&ose + + - - Add new slide at bottom - Agregar nueva diapositiva al finalAcortar? - - - EditCustomForm + + &Close + + - - You need to enter a title - Usted debe ingresar un título - - - ThemeManager + + New Alert + + - - Theme Exists - Ya existe el Tema - - - Ui_MainWindow + + You haven't specified any text for your alert. Please type in some text before clicking New. + + + + + AlertsPlugin.AlertsManager - - &Help - &Ayuda - - - Ui_OpenSongExportDialog + + Alert message created and displayed. + + + + + AlertsPlugin.AlertsTab - - OpenSong Song Exporter - Exportador de Canciones OpenSongAcortar? - - - Ui_AmendThemeDialog + + Alerts + Alertas + - - Vertical Align: - Vertical: - - - TestMediaManager + + Font + Tipo de Letra + - - Item2 - Ítem2 + + Font Name: + Fuente: + - - Item1 - Ítem1 - - - Ui_AmendThemeDialog + + Font Color: + + - - Top - Superior - - - BiblesTab + + Background Color: + Color de Fondo: + - - Display Dual Bible Verses - Mostrar Versículos Paralelos - - - Ui_MainWindow + + Font Size: + Tamaño: + - - Toggle Service Manager - Alternar Gestor de Servicio - - - MediaManagerItem + + pt + pt + - - &Add to Service - &Agregar al Servicio - - + + Alert timeout: + Espera: + + + + s + s + + + + Location: + Ubicación: + + + + Preview + Vista Previa + + + + openlp.org + openlp.org + + + + Top + + + + + Middle + Medio + + + + Bottom + + + + AmendThemeForm - - First Color: - Primer Color: - - - ThemesTab + + Theme Maintenance + Mantenimiento de Temas + - - Song level - Según Canción - - - alertsPlugin + + &Visibility: + + - - Show an alert message - Mostrar un mensaje de alerta - - - Ui_MainWindow + + Opaque + Opaco + - - Ctrl+F1 - Ctrl+F1 - - - SongMaintenanceForm + + Transparent + Transparente + - - Couldn't save your topic! - ¡No se pudo guardar la categoría! - - - Ui_OpenLPExportDialog + + Type: + Tipo: + - - Remove Selected - Quitar lo Seleccionado - - - ThemeManager + + Solid Color + Color Sólido + - - Delete theme - Eliminar tema - - - ImageTab + + Gradient + Gradiente + - - Image Settings - Preferencias de Imagen - - - Ui_OpenSongImportDialog + + Image + Imagen + - - OpenSong Song Importer - Importador de canciones OpenSong - - - BiblesTab + + Image: + Imagen: + - - Bibles - Biblias - - - SongUsagePlugin + + Gradient: + + - - &Extract recorded data - &Extraer los datos guardados - - - AlertsTab + + Horizontal + Horizontal + - - Font Name: - Fuente: - - - Ui_MainWindow + + Vertical + Vertical + - - &Web Site - Sitio &Web - - - MediaManagerItem + + Circular + Circular + - - Send the selected item live - Enviar en vivo el ítem seleccionado - - - Ui_MainWindow + + &Background + + - - M&ode - M&odo + + Main Font + Tipo de Letra Principal + - - Translate the interface to your language - Traducir la interfaz a su idioma + + Font: + Fuente: + - - Service Manager - Gestor de Servicio - - - CustomMediaItem + + Color: + + - - Custom - Personalizada - - - Ui_BibleImportWizard + + Size: + Tamaño: + - - OSIS - OSIS - - - SongsPlugin + + pt + pt + - - openlp.org 1.0 - openlp.org 1.0 - - - Ui_MainWindow + + Wrap indentation: + + - - &Theme - &Tema - - - Ui_EditVerseDialog + + Adjust line spacing: + + - - Edit Verse - Editar Verso - - - Ui_MainWindow + + Normal + Normal + - - &Language - &Idioma - - - SlideController + + Bold + Negrita + - - Verse - VersoVersículo? - - - ImportWizardForm + + Italics + Cursiva + - - You need to specify an OpenSong Bible file to import! - ¡Debe especificar una Biblia OpenSong para importar! - - - ServiceManager + + Bold/Italics + Negrita/Cursiva + - - Your service is unsaved, do you want to save those changes before creating a new one ? - Su servicio no se ha salvado, ¿quiere guardar los cambios antes de crear uno nuevo? - - - Ui_OpenSongExportDialog + + Style: + + - - Remove Selected - Quitar lo Seleccionado - - - SongMediaItem + + Display Location + Ubicación en la pantalla + - - Search: - Buscar: - - - MainWindow + + X position: + + - - Save Changes to Service? - ¿Guardar los Cambios al Servicio? + + Y position: + + - - Your service has changed, do you want to save those changes? - ¿Su servicio cambió, quiere guardar esos cambios? - - - EditSongForm + + Width: + Ancho: + - - Invalid verse entry - values must be Numeric, I,B,C,T,P,E,O - Entrada no válida - los valores deben ser Numéricos, I,B,C,T,P,E,OIntro,Puente,Coro,T ,Pre-coro, Final,Otro. - - - Ui_EditSongDialog + + Height: + Altura: + - - &Add to Song - &Agregar a Canción - - - Ui_MainWindow + + px + px + - - &About - &Acerca De - - - BiblesTab + + &Main Font + + - - Only show new chapter numbers - Solo mostrar los números de capítulos nuevos - - - ImportWizardForm + + Footer Font + Fuente de Pie de Página + - - You need to specify a version name for your Bible! - ¡Debe especificar un nombre para la versión de la Biblia! - - - Ui_AlertEditDialog + + &Footer Font + + - - Delete - Eliminar - - - EditCustomForm + + Outline + Contorno + - - Error - Error - - - RemotesPlugin + + Outline size: + + - - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer.<br>The Primary use for this would be to send alerts from a creche - <b>Remote Plugin</b><br>Este plugin ofrece la posibilidad de enviar mensajes a alguna versión de openlp en un equipo diferente.<br>El uso principal para esto sería enviar alertas desde una guardería - - - SongMaintenanceForm + + Outline color: + + - - This topic can't be deleted, it is currently assigned to at least one song! - ¡Esta categoría no se puede borrar, esta asignada a al menos una canción! - - - BibleMediaItem + + Show outline: + + - - Find: - Encontrar: - - - AlertEditForm + + Shadow + Sombra + - - Item selected to Add - Ítem seleccionado para AgregarAcortar? - - - Ui_AmendThemeDialog + + Shadow size: + + - - Right - Derecha - - - ThemeManager + + Shadow color: + + - - Save Theme - (%s) - Guardar Tema - (%s) - - - ImageMediaItem + + Show shadow: + + - - Allow background of live slide to be overridden - Permitir que el fondo de la diapositiva sea sustituido - - - MediaManagerItem + + Alignment + Alineación + - - Add the selected item(s) to the service - Agregar el elemento(s) seleccionado(s) al el servicio - - - AuthorsForm + + Horizontal align: + + - - Error - Error - - - BibleMediaItem + + Left + Izquierda + - - Book: - Libro: - - - Ui_AmendThemeDialog + + Right + Derecha + - - Font Color: - Color de Fuente: - - - Ui_OpenLPExportDialog + + Center + Centro + - - Select openlp.org export filename: - Seleccione el nombre de archivo openlp.org a exportar:Acortar? - - - Ui_SettingsDialog + + Vertical align: + + - - Settings - Preferencias - - - BiblesTab + + Top + + - - Verse Display - Visualización de versículos - - - MediaManagerItem + + Middle + Medio + - - Edit the selected - Editar - - - SlideController + + Bottom + + - - Move to next - Ir al siguiente - - - Ui_MainWindow + + Slide Transition + Transición de Diapositiva + - - &Plugin List - Lista de &Plugins - - + + &Other Options + + + + + Preview + Vista Previa + + + + All Files + + + + + Select Image + + + + + First color: + + + + + Second color: + + + + + Slide height is %s rows. + + + + + Theme &name: + + + + + Use default location + + + + + Transition active + + + + + BibleDB + + + Book not found + + + + BiblePlugin - - &Bible - &Biblia - - - Ui_BibleImportWizard + + <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. + <strong>Bible Plugin</strong><br />Este plugin permite visualizar versículos de la Biblia en la pantalla desde distintas fuentes durante el servicio. + - - Web Download - Descarga Web - - - Ui_AmendThemeDialog + + &Bible + &Biblia + + + + BiblesPlugin,BiblesTab - - Horizontal - Horizontal - - - ImportWizardForm + + Bibles + Biblias + + + + BiblesPlugin.BiblesTab - - Open OSIS file - Abrir archivo OSIS - - - SongMaintenanceForm + + Verse Display + Visualización de versículos + - - Couldn't save your book! - ¡No se pudo guardar su libro! + + Only show new chapter numbers + Solo mostrar los números de capítulos nuevos + - - Couldn't add your topic! - ¡No se pudo agregar la categoría! - - - Ui_AmendThemeDialog + + Layout style: + + - - pt - pt - - - Ui_MainWindow + + Display style: + + - - &Add Tool... - &Agregar Herramienta... - - - Ui_AmendThemeDialog + + Bible theme: + + - - <Color2> - <Color2> - - - ServiceManager + + Verse Per Slide + + - - Move up - Hacia arriba - - - Ui_OpenLPImportDialog + + Verse Per Line + + - - Lyrics - Letra - - - BiblesTab + + Continuous + + - - No brackets - Sin corchetes - - - Ui_AlertEditDialog + + No Brackets + + - - Maintain Alerts - Mantenimiento de Alertas - - - Ui_AmendThemeDialog + + ( And ) + + - - px - px - - - ServiceManager + + { And } + + - - Select a theme for the service - Seleccione un tema para el servicio - - - ThemesTab + + [ And ] + + - - Themes - Temas - - - ServiceManager + + Note: +Changes do not affect verses already in the service. + + - - Move to bottom - Mover al Final - - - Ui_PluginViewDialog + + Display dual Bible verses + + + + + BiblesPlugin.ImportWizardForm - - Status: - Estado: - - - Ui_EditSongDialog + + Bible Import Wizard + Asistente de Importación de Biblias + - - CCLI Number: - Número en CCLI: - - - ImportWizardForm + + Welcome to the Bible Import Wizard + Bienvenido al Asistente de Importación de Biblias + - - This Bible already exists! Please import a different Bible or first delete the existing one. - ¡La Biblia ya existe! Por favor, importe una diferente o borre la anterior. - - - Ui_MainWindow + + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + Este asistente le ayudará a importar Biblias en una variedad de formatos. Haga clic en el botón siguiente para empezar el proceso seleccionando un formato a importar. + - - &Translate - &Traducir - - - AlertEditForm + + Select Import Source + Seleccione Origen de Importación + - - Please Save or Clear seletced item - Por favor, Guarde o Limpie el ítem seleccionadoO Borre? - - - Ui_MainWindow + + Select the import format, and where to import from. + Seleccione el formato y el lugar del cual importar. + - - Save Service As - Guardar Servicio Como - - - Ui_SongMaintenanceDialog + + Format: + Formato: + - - Authors - Autores - - - SongUsageDetailForm + + OSIS + OSIS + - - Output File Location - Archivo de Salida - - - BiblesTab + + CSV + CSV + - - { and } - { y } - - + + OpenSong + OpenSong + + + + Web Download + Descarga Web + + + + File location: + + + + + Books location: + + + + + Verse location: + + + + + Bible filename: + + + + + Location: + Ubicación: + + + + Crosswalk + Crosswalk + + + + BibleGateway + BibleGateway + + + + Bible: + Biblia: + + + + Download Options + Opciones de Descarga + + + + Server: + Servidor: + + + + Username: + Usuario: + + + + Password: + Contraseña: + + + + Proxy Server (Optional) + Servidor Proxy (Opcional) + + + + License Details + Detalles de Licencia + + + + Set up the Bible's license details. + Establezca los detalles de licencia de la Biblia. + + + + Version name: + + + + + Copyright: + Derechos de autor: + + + + Permission: + Permiso: + + + + Importing + Importando + + + + Please wait while your Bible is imported. + Por favor, espere mientras que la Biblia es importada. + + + + Ready. + Listo. + + + + Invalid Bible Location + Ubicación de Biblia no válida + + + + You need to specify a file to import your Bible from. + + + + + Invalid Books File + Archivo de Libros No Válido + + + + You need to specify a file with books of the Bible to use in the import. + + + + + Invalid Verse File + Archivo de Versículo No Válido + + + + You need to specify a file of Bible verses to import. + + + + + Invalid OpenSong Bible + Biblia OpenSong No Válida + + + + You need to specify an OpenSong Bible file to import. + + + + + Empty Version Name + Nombre de Versión Vacío + + + + You need to specify a version name for your Bible. + + + + + Empty Copyright + Derechos de autor en blanco + + + + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + ¡Tiene que establecer los derechos de autor de la Biblia! Biblias de Dominio Público deben ser marcados como tales. + + + + Bible Exists + Ya existe la Biblia + + + + This Bible already exists! Please import a different Bible or first delete the existing one. + ¡La Biblia ya existe! Por favor, importe una diferente o borre la anterior. + + + + Open OSIS File + + + + + Open Books CSV File + + + + + Open Verses CSV File + + + + + Open OpenSong Bible + Abrir Biblia OpenSong + + + + Starting import... + Iniciando importación... + + + + Finished import. + Importación finalizada. + + + + Your Bible import failed. + La importación de su Biblia falló. + + + + BiblesPlugin.MediaItem + + + Bible + Biblia + + + + Quick + Rápida + + + + Advanced + Avanzado + + + + Version: + Versión: + + + + Dual: + Paralela: + + + + Search type: + + + + + Find: + Encontrar: + + + + Search + Buscar + + + + Results: + Resultados: + + + + Book: + Libro: + + + + Chapter: + Capítulo: + + + + Verse: + Versículo: + + + + From: + Desde: + + + + To: + Hasta: + + + + Verse Search + Búsqueda de versículo + + + + Text Search + Búsqueda de texto + + + + Clear + Limpiar + + + + Keep + Conservar + + + + No Book Found + No se encontró el libro + + + + No matching book could be found in this Bible. + No se encuentra un libro que concuerde, en esta Biblia. + + + + etc + + + + + Bible not fully loaded. + + + + + BiblesPlugin.Opensong + + + Importing + Importando + + + + CustomPlugin + + + <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> + + + + + CustomPlugin.CustomTab + + + Custom + + + + + Custom Display + Presentación Personalizada + + + + Display footer + + + + + CustomPlugin.EditCustomForm + + + Edit Custom Slides + Editar Diapositivas Personalizadas + + + + Move slide up once position. + + + + + Move slide down one position. + + + + + &Title: + + + + + Add New + Agregar Nueva + + + + Add a new slide at bottom. + + + + + Edit + Editar + + + + Edit the selected slide. + + + + + Edit All + Editar Todo + + + + Edit all the slides at once. + + + + + Save + Guardar + + + + Save the slide currently being edited. + + + + + Delete + Eliminar + + + + Delete the selected slide. + + + + + Clear + Limpiar + + + + Clear edit area + Limpiar el área de edición + + + + Split Slide + + + + + Split a slide into two by inserting a slide splitter. + + + + + The&me: + + + + + &Credits: + + + + + Save && Preview + Guardar && Vista Previa + + + + Error + Error + + + + You need to type in a title. + + + + + You need to add at least one slide + + + + + You have one or more unsaved slides, please either save your slide(s) or clear your changes. + + + + + CustomPlugin.MediaItem + + + Custom + + + + + You haven't selected an item to edit. + + + + + You haven't selected an item to delete. + + + + + DisplayTab + + + Displays + + + + + Default Settings + + + + + X: + + + + + Y: + + + + + Height: + Altura: + + + + Width: + Ancho: + + + + Custom Settings + + + + + Width + + + + + Override display settings + + + + GeneralTab - - Prompt to save Service before starting New - Pedir salvar el Servicio al crear uno Nuevo - - - ImportWizardForm - - - Starting import... - Iniciando importación... - - - BiblesTab - - - Note: -Changes don't affect verses already in the service - Nota: -Los cambios no afectan a los versículo ya en el servicio - - - Ui_EditVerseDialog - - - Intro - Intro - - - ServiceManager - - - Move up order - Mover hacia arriba - - - PresentationTab - - - available - disponible - - - ThemeManager - - - default - por defectopredeterminado? - - - SongMaintenanceForm - - - Delete Author - Borrar Autor - - - Ui_AmendThemeDialog - - - Display Location - Ubicación en la pantalla - - - Ui_PluginViewDialog - - - Version: - Versión: - - - Ui_AlertEditDialog - - - Add - Agregar - - - GeneralTab - - - General - General - - - Ui_AmendThemeDialog - - - Y Position: - Posición Y: - - - ServiceManager - - - Move down order - Mover hacia abajo - - - BiblesTab - - - verse per slide - versículo por diapositiva - - - Ui_BibleImportWizard - - - Welcome to the Bible Import Wizard - Bienvenido al Asistente de Importación de Biblias - - - Ui_AmendThemeDialog - - - Show Shadow: - Mostrar: - - - AlertsTab - - - Preview - Vista Previa - - - alertsPlugin - - - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - <b>Alerts Plugin</b><br>Este plugin controla la visualización de alertas en la pantalla de presentaciones - - - GeneralTab - - - Show the splash screen - Mostrar pantalla de bienvenida - - - Ui_MainWindow - - - New Service - Servicio Nuevo - - - SlideController - - - Move to first - Ir al principio - - - Ui_MainWindow - - - &Online Help - &Ayuda En Línea - - - SlideController - - - Blank Screen - Pantalla en Blanco - - - Ui_MainWindow - - - Save Service - Guardar Servicio - - - Save &As... - Guardar &Como... - - - Toggle the visibility of the Media Manager - Alternar visibilidad del Gestor de Medios - - - MediaManagerItem - - - Delete the selected item - Borrar el ítem seleccionado - - - Ui_EditSongDialog - - - Add - Agregar - - - alertsPlugin - - - &Alert - &Alerta - - - BibleMediaItem - - - Advanced - Avanzado - - - ImageMediaItem - - - Image(s) - Imagen(es) - - - Ui_MainWindow - - - F11 - F11 - - - F10 - F10 - - - F12 - F12 - - - Ui_BibleImportWizard - - - Select the import format, and where to import from. - Seleccione el formato y el lugar del cual importar. - - - Ui_MainWindow - - - Alt+F7 - Alt+F7 - - - Add an application to the list of tools - Agregar una aplicación a la lista de herramientas - - - MediaPlugin - - - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - <b>Media Plugin</b><br>Este plugin permite la reproducción de medios de audio y video - - - BiblesTab - - - Bible Theme: - Tema de Biblia: - - - SongsPlugin - - - Export songs in openlp.org 1.0 format - Exportar canciones en formato openlp.org 1.0 - - - Ui_MainWindow - - - Theme Manager - Gestor de Temas - - - AlertsTab - - - Alerts - Alertas - - - Ui_customEditDialog - - - Move slide down 1 - Mover hacia abajo 1 - - - Ui_AmendThemeDialog - - - Font: - Fuente: - - - ServiceManager - - - Load an existing service - Abrir un servicio existente - - - Ui_MainWindow - - - Toggle the visibility of the Theme Manager - Alternar visibilidad del Gestor de Temas - - - PresentationTab - - - Presentations - Presentaciones - - - SplashScreen - - - Starting - Iniciando - - - ImageTab - - - Slide Loop Delay: - Retraso del Bucle: - - - ServiceManager - - - Move to end - Mover al final - - - AlertsTab - - - Alert timeout: - Espera:Timeout?? - - - Ui_MainWindow - - - &Preview Pane - Panel de Vista &Previa - - - MediaManagerItem - - - Add a new - Agregar uno nuevo - - - ThemeManager - - - Select Theme Import File - Seleccione el Archivo de Tema a Importar - - - New Theme - Tema Nuevo - - - MediaMediaItem - - - Media - Medios - - - Ui_BibleImportWizard - - - Password: - Contraseña: - - - Ui_AmendThemeDialog - - - Outline Size: - Tamaño: - - - Ui_OpenSongExportDialog - - - Progress: - Progreso: - - - AmendThemeForm - - - Second Color: - Segundo Color: - - - Ui_EditSongDialog - - - Theme, Copyright Info && Comments - Tema, Derechos de Autor && Comentarios - - - Ui_MainWindow - - - &Theme Manager - Gestor de &Temas - - - Ui_OpenLPImportDialog - - - Select openlp.org songfile to import: - Seleccionar al archivo de canciones openlp.org a importar: - - - Ui_EditSongDialog - - - Song Book - Himnario - - - alertsPlugin - - - F7 - F7 - - - Ui_OpenLPExportDialog - - - Author - Autor - - - Ui_AmendThemeDialog - - - Wrap Indentation - Sangría de Retorno - - - ThemeManager - - - Import a theme - Importar un tema - - - PresentationPlugin - - - <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - <b>Presentation Plugin</b> <br> Ofrece la capacidad de mostrar presentaciones usando un número de programas diferentes. La selección de programas disponibles se encuentra en un cuadro desplegable. - - - ImageMediaItem - - - Image - Imagen - - - SongsTab - - - Enable search as you type: - Habilitar búsqueda-al-escribir: - - - Ui_AlertDialog - - - Cancel - Cancelar - - - Ui_OpenLPImportDialog - - - Import - Importar - - - Ui_EditVerseDialog - - - Chorus - Coro - - - Ui_EditSongDialog - - - Edit All - Editar Todo - - - AuthorsForm - - - You need to type in the last name of the author. - Debe ingresar el apellido del autor. - - - SongsTab - - - Songs Mode - Modo de canciones - - - Ui_AmendThemeDialog - - - Left - Izquierda - - - ThemesTab - - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - Utilizar el tema del servicio, ignorando el tema de las canciones individuales. Si el servicio no tiene un tema, utilizar el tema global. - - - ImageTab - - - Images - Imágenes - - - BibleMediaItem - - - Verse: - Versículo:Verso:? - - - Ui_BibleImportWizard - - - CSV - CSV - - - Ui_OpenLPExportDialog - - - Song Export List - Lista de Canciones a ExportarAcortar? - - - ThemeManager - - - Export theme - Exportar tema - - - Ui_SongMaintenanceDialog - - - Delete - Eliminar - - - Ui_AmendThemeDialog - - - Theme Name: - Nombrar como: - - - Ui_AboutDialog - - - About OpenLP - Acerca de OpenLP - - - Ui_MainWindow - - - Toggle the visibility of the Service Manager - Alternar visibilidad del Gestor de Servicio - - - PresentationMediaItem - - - A presentation with that filename already exists. - Ya existe una presentación con ese nombre. - - - AlertsTab - - - openlp.org - openlp.org - - - ImportWizardForm - - - Invalid Books File - Archivo de Libros No Válido - - - Ui_OpenLPImportDialog - - - Song Title - Titulo de Canción - - - MediaManagerItem - - - &Show Live - Mo&star En Vivo& Where - - - AlertsTab - - - Keep History: - Guardar Historial:Acortar? - - - Ui_AmendThemeDialog - - - Image: - Imagen: - - - Ui_customEditDialog - - - Set Theme for Slides - Establezca el Tema para las Diapositivas - - - Ui_MainWindow - - - More information about OpenLP - Más información acerca de OpenLP - - - AlertsTab - - - Background Color: - Color de Fondo: - - - SongMaintenanceForm - - - No topic selected! - ¡No seleccionó la categoría! - - - Ui_MainWindow - - - &Media Manager - Gestor de &Medios - - - &Tools - &Herramientas - - - AmendThemeForm - - - Background Color: - Color de Fondo: - - - Ui_EditSongDialog - - - A&dd to Song - A&gregar a Canción - - - Title: - Título: - - - GeneralTab - - - Screen - Pantalla - - - AlertsTab - - - s - s - - + + CCLI Details + Detalles de CCLI + + + + SongSelect Password: + Contraseña SongSelect: + + + + primary + primario + + + + Application Startup + Inicio de la Aplicación + + + + Select monitor for output display: + Seleccionar monitor para visualizar la salida: + + + + Application Settings + Configuración del Programa + + + + SongSelect Username: + Usuario SongSelect: + + + + CCLI Number: + Número CCLI: + + + + Automatically open the last service + Abrir automáticamente el último servicio + + + + Preview Next Song from Service Manager + Vista Previa de la Siguiente Canción del Servicio + + + + Show blank screen warning + Mostrar advertencia de pantalla en blanco + + + + Prompt to save Service before starting New + Pedir salvar el Servicio al crear uno Nuevo + + + + General + General + + + + Show the splash screen + Mostrar pantalla de bienvenida + + + + Screen + Pantalla + + + + Monitors + Monitores + + + + Display if a single screen + + + + ImagePlugin - - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any somgs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> - <b>Image Plugin</b><br>Permite mostrar imágenes de todo tipo. Si se seleccionan varias imágenes juntas y se presentan en vivo, es posible convertirlas en un bucle temporalizado.<br<br>Desde el plugin, si se seleciona la opción de <i>Sustituir el fondo</i>, cualquier canción que se muestre, usará la imagen seleccionada como fondo, en vez de la imagen del tema.<br> - - - Ui_AlertEditDialog + + <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> + + + + + ImagePlugin.ImageTab - - Clear - Limpiar - - - Ui_BibleImportWizard + + Images + Imágenes + - - Please wait while your Bible is imported. - Por favor, espere mientras que la Biblia es importada. - - - MediaManagerItem + + Image Settings + Preferencias de Imagen + - - No items selected... - Ningún ítem seleccionado... - - - Ui_OpenLPImportDialog + + Slide Loop Delay: + Retraso del Bucle: + - - Select All - Seleccionar Todo - - - Ui_AmendThemeDialog + + sec + seg + + + + ImagePlugin.MediaItem - - Font Main - Fuente Principal - - - Ui_OpenLPImportDialog + + Image + Imagen + - - Title - Título - - - Ui_OpenSongExportDialog + + Select Image(s) + Seleccionar Imagen(es) + - - Select OpenSong song folder: - Seleccione la carpeta OpenSong de canciones:Acortar? - - - Ui_MainWindow + + All Files + + - - Toggle Media Manager - Alternar Gestor de Medios - - - SongUsagePlugin + + Replace Live Background + + - - &Song Usage - &Uso de las Canciones - - - GeneralTab + + You must select an item to delete. + + - - Monitors - Monitores - - - EditCustomForm + + Image(s) + Imagen(es) + - - You need to enter a slide - Debe insertar una diapositiva - - - ImportWizardForm + + You must select an item to process. + + + + + LanguageManager - - You need to specify a file to import your Bible from! - ¡Debe especificar un archivo desde el cual importar su Biblia! - - - Ui_EditVerseDialog + + Language + + - - Verse Type - Tipo de Verso - - - ThemeManager - - - You have not selected a theme! - ¡No ha seleccionado un tema! - - - Ui_EditSongDialog - - - Comments - Comentarios - - - AlertsTab - - - Bottom - AbajoInferior? - - - Ui_MainWindow - - - Create a new Service - Crear un Servicio nuevo - - - AlertsTab - - - Top - ArribaSuperior? - - - SlideController - - - Preview - Vista Previa - - - Ui_PluginViewDialog - - - TextLabel - TextLabelEnglish? - - - About: - Acerca de: - - - Inactive - Inactivo - - - Ui_OpenSongExportDialog - - - Ready to export - Listo para exportar - - - Export - Exportar - - - Ui_PluginViewDialog - - - Plugin List - Lista de Plugins - - - Ui_AmendThemeDialog - - - Transition Active: - Activar Transición: - - - Ui_BibleImportWizard - - - Proxy Server (Optional) - Servidor Proxy (Opcional) - - - Ui_EditSongDialog - - - &Manage Authors, Topics, Books - Ad&ministrar Autores, Categorías, Libros - - - Ui_SongUsageDetailDialog - - - Audit Detail Extraction - Extracción de Detalles de Auditoria - - - Ui_OpenLPExportDialog - - - Ready to export - Listo para exportar - - - EditCustomForm - - - Save && Preview - Guardar && Vista Previa - - - Ui_OpenLPExportDialog - - - Select All - Seleccionar Todo - - - Ui_SongUsageDetailDialog - - - to - hasta - - - Ui_AmendThemeDialog - - - Size: - Tamaño: - - + + After restart new Language settings will be used. + + + + MainWindow - - OpenLP Main Display Blanked - Pantalla Principal de OpenLP en Blanco - - - Ui_OpenLPImportDialog + + The Main Display has been blanked out + La Pantalla Principal esta en negro + - - Remove Selected - Quitar lo Seleccionado - - - OpenSongBible + + OpenLP Version Updated + Versión de OpenLP Actualizada + - - Importing - Importando - - - Ui_EditSongDialog + + Save Changes to Service? + ¿Guardar los Cambios al Servicio? + - - Delete - Eliminar - - - Ui_MainWindow + + OpenLP Main Display Blanked + Pantalla Principal de OpenLP en Blanco + - - Ctrl+S - Crtl+G - - - PresentationMediaItem + + OpenLP 2.0 + OpenLP 2.0 + - - File exists - Ya existe el Archivo - - - Ui_OpenSongImportDialog + + English + Ingles + - - Ready to import - Listo para importar - - - SlideController + + &File + &Archivo + - - Stop continuous loop - Detener el bucleBucle, sinónimos? + + &Import + &Importar + - - s - s - - - SongMediaItem + + &Export + &Exportar + - - Song Maintenance - Mantenimiento de Canción - - - Ui_customEditDialog + + &View + &Ver + - - Edit - Editar - - - Ui_AmendThemeDialog + + M&ode + M&odo + - - Gradient : - Gradiente: - - - BiblesTab + + &Tools + &Herramientas + - - Layout Style: - Disposición: - - - ImportWizardForm + + &Settings + &Preferencias + - - Invalid Verse File - Archivo de Versículo No Válido - - - EditSongForm + + &Language + &Idioma + - - Error - Error - - - Ui_customEditDialog + + &Help + &Ayuda + - - Add New - Agregar Nueva - - - Ui_AuthorsDialog + + Media Manager + Gestor de Medios + - - Display name: - Mostrar: - - - SongMaintenanceForm + + Service Manager + Gestor de Servicio + - - Are you sure you want to delete the selected topic? - ¿Está seguro que desea eliminar la categoría seleccionada? - - - Ui_AmendThemeDialog + + Theme Manager + Gestor de Temas + - - Bold/Italics - Negrita/Cursiva - - - Ui_SongMaintenanceDialog + + &New + &Nuevo + - - Song Maintenance - Mantenimiento de Canciones - - - Ui_EditVerseDialog + + New Service + Servicio Nuevo + - - Bridge - Puente - - - SongsTab + + Create a new service. + + - - Songs - Canciones - - - Ui_AmendThemeDialog + + Ctrl+N + Ctrl+N + - - Preview - Vista Previa - - - Ui_AboutDialog + + &Open + &Abrir + - - Credits - Créditos - - + + Open Service + Abrir Servicio + + + + Open an existing service. + + + + + Ctrl+O + Ctrl+O + + + + &Save + &Guardar + + + + Save Service + Guardar Servicio + + + + Save the current service to disk. + + + + + Ctrl+S + Crtl+G + + + + Save &As... + Guardar &Como... + + + + Save Service As + Guardar Servicio Como + + + + Save the current service under a new name. + + + + + Ctrl+Shift+S + + + + + E&xit + &Salir + + + + Quit OpenLP + Salir de OpenLP + + + + Alt+F4 + Alt+F4 + + + + &Theme + &Tema + + + + &Configure OpenLP... + + + + + &Media Manager + Gestor de &Medios + + + + Toggle Media Manager + Alternar Gestor de Medios + + + + Toggle the visibility of the media manager. + + + + + F8 + F8 + + + + &Theme Manager + Gestor de &Temas + + + + Toggle Theme Manager + Alternar Gestor de Temas + + + + Toggle the visibility of the theme manager. + + + + + F10 + F10 + + + + &Service Manager + Gestor de &Servicio + + + + Toggle Service Manager + Alternar Gestor de Servicio + + + + Toggle the visibility of the service manager. + + + + + F9 + F9 + + + + &Preview Panel + &Panel de Vista Previa + + + + Toggle Preview Panel + Alternar Panel de Vista Previa + + + + Toggle the visibility of the preview panel. + + + + + F11 + F11 + + + + &Live Panel + + + + + Toggle Live Panel + + + + + Toggle the visibility of the live panel. + + + + + F12 + F12 + + + + &Plugin List + Lista de &Plugins + + + + List the Plugins + Lista de Plugins + + + + Alt+F7 + Alt+F7 + + + + &User Guide + Guía de &Usuario + + + + &About + &Acerca De + + + + More information about OpenLP + Más información acerca de OpenLP + + + + Ctrl+F1 + Ctrl+F1 + + + + &Online Help + &Ayuda En Línea + + + + &Web Site + Sitio &Web + + + + &Auto Detect + + + + + Use the system language, if available. + + + + + Set the interface language to %s + + + + + Add &Tool... + + + + + Add an application to the list of tools. + + + + + &Default + + + + + Set the view mode back to the default. + + + + + &Setup + + + + + Set the view mode to Setup. + + + + + &Live + En &vivo + + + + Set the view mode to Live. + + + + + Version %s of OpenLP is now available for download (you are currently running version %s). + +You can download the latest version from http://openlp.org + + + + + Your service has changed. Do you want to save those changes? + + + + + Default Theme: %s + + + + MediaManagerItem - - Preview the selected item - Vista Previa del ítem seleccionado - - - Ui_BibleImportWizard + + You must select one or more items + Usted debe seleccionar uno o más elementos + - - Version Name: - Nombre de Versión: - - - Ui_AboutDialog + + &Add to Service + &Agregar al Servicio + - - About - Acerca De - - - Ui_EditVerseDialog + + Send the selected item live + Enviar en vivo el ítem seleccionado + - - Ending - Final - - - Ui_AmendThemeDialog + + Add the selected item(s) to the service + Agregar el elemento(s) seleccionado(s) al el servicio + - - Horizontal Align: - Horizontal: - - + + Delete the selected item + Borrar el ítem seleccionado + + + + &Show Live + Mo&star En Vivo + + + + Preview the selected item + Vista Previa del ítem seleccionado + + + + No Items Selected + + + + + Import %s + + + + + Import a %s + + + + + Load %s + + + + + Load a new %s + + + + + New %s + + + + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Preview %s + + + + + Add %s to Service + + + + + &Edit %s + + + + + &Delete %s + + + + + &Preview %s + + + + + &Add to selected Service Item + + + + + You must select one or more items to preview. + + + + + You must select one or more items to send live. + + + + + You must select one or more items. + + + + + No items selected + + + + + No Service Item Selected + + + + + You must select an existing service item to add to. + + + + + Invalid Service Item + + + + + You must select a %s service item. + + + + + MediaPlugin + + + <b>Media Plugin</b><br>This plugin allows the playing of audio and video media + <b>Media Plugin</b><br>Este plugin permite la reproducción de medios de audio y video + + + + MediaPlugin.MediaItem + + + Media + Medios + + + + Select Media + Seleccionar Medios + + + + Replace Live Background + + + + + You must select an item to delete. + + + + + OpenLP + + + Image Files + + + + + PluginForm + + + Plugin List + Lista de Plugins + + + + Plugin Details + Detalles de Plugin + + + + Version: + Versión: + + + + TextLabel + TextLabel + + + + About: + Acerca de: + + + + Status: + Estado: + + + + Active + Activo + + + + Inactive + Inactivo + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + + + + + PresentationPlugin + + + <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + + + + PresentationPlugin.MediaItem + + + Presentation + Presentación + + + + Select Presentation(s) + Seleccionar Presentación(es) + + + + Automatic + + + + + Present using: + Mostrar usando: + + + + File exists + Ya existe el Archivo + + + + A presentation with that filename already exists. + Ya existe una presentación con ese nombre. + + + + You must select an item to delete. + + + + + PresentationPlugin.PresentationTab + + + Presentations + Presentaciones + + + + Available Controllers + Controladores Disponibles + + + + available + disponible + + + + RemotePlugin + + + <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer via a web browser or other app<br>The Primary use for this would be to send alerts from a creche + + + + + RemotePlugin.RemoteTab + + + Remotes + Remotas + + + + Remotes Receiver Port + Puerto de Recepción + + + + ServiceItemEditForm + + + Service Item Maintenance + + + + + Up + + + + + Delete + Eliminar + + + + Down + + + + ServiceManager - - &Edit Item - &Editar Ítem - - - Ui_AmendThemeDialog + + Save Service + Guardar Servicio + - - Background Type: - Tipo de Fondo: - - - Ui_MainWindow + + Save Changes to Service? + ¿Guardar cambios al Servicio? + - - &Save - &Guardar + + Open Service + Abrir Servicio + - - OpenLP 2.0 - OpenLP 2.0 - - + + 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 + + + Settings + Preferencias + + + + 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 + + + &Delete recorded data + &Eliminar los datos guardados + + + + Start/Stop live song usage recording + Grabar los tiempos de la canción en vivo + + + + <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service + <b>SongUsage Plugin</b><br>Este plugin registra el uso de canciones y cuando se han utilizado durante un servicio en vivo + + + + Delete song usage to specified date + Eliminar el historial de uso hasta la fecha especificada + + + + Generate report on Song Usage + Crear un reporte del Uso de las Canciones + + + + Song Usage Status + Estado de Uso de las Canciones + + + + &Extract recorded data + &Extraer los datos guardados + + + + &Song Usage + &Uso de las Canciones + + + + SongsPlugin + + + &Song + &Canción + + + + Import songs using the import wizard. + + + + + Songs of Fellowship (temp menu item) + + + + + Import songs from the VOLS1_2.RTF, sof3words.rtf and sof4words.rtf supplied with the music books + + + + + Generic Document/Presentation Import (temp menu item) + + + + + Import songs from Word/Writer/Powerpoint/Impress + + + + + Open Songs of Fellowship file + + + + + Import Error + + + + + Error importing Songs of Fellowship file. +OpenOffice.org must be installed and you must be using an unedited copy of the RTF included with the Songs of Fellowship Music Editions + + + + + Open documents or presentations + + + + + <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + + + + + SongsPlugin.AuditDeleteDialog + + + Song Usage Delete + + + + + SongsPlugin.AuditDetailDialog + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + hasta + + + + Report Location + Ubicación de Reporte + + + + SongsPlugin.AuthorsForm + + + Author Maintenance + Mantenimiento de Autores + + + + Display name: + Mostrar: + + + + First name: + Nombre: + + + + Last name: + Apellido: + + + + Error + Error + + + + You need to type in the first name of the author. + Tiene que escribir el nombre del autor. + + + + You need to type in the last name of the author. + Debe ingresar el apellido del autor. + + + + You haven't set a display name for the author, would you like me to combine the first and last names for you? + No se ha puesto un nombre para el autor, ¿le gustaría que el nombre y los apellidos se combinen por usted? + + + + SongsPlugin.EditSongForm + + + Song Editor + Editor de Canción + + + + &Title: + + + + + Alt&ernate Title: + + + + + &Lyrics: + + + + + &Verse Order: + + + + + &Add + + + + + &Edit + &Editar + + + + Ed&it All + + + + + &Delete + + + + + Title && Lyrics + Título && Letra + + + + Authors + Autores + + + + &Add to Song + &Agregar a Canción + + + + &Remove + &Quitar + + + + &Manage Authors, Topics, Books + Ad&ministrar Autores, Categorías, Libros + + + + Topic + Categoría + + + + A&dd to Song + A&gregar a Canción + + + + R&emove + &Quitar + + + + Song Book + Himnario + + + + Authors, Topics && Book + Autores, Categorías && Libros + + + + 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 + + + + Save && Preview + Guardar && Vista Previa + + + + Add Author + + + + + This author does not exist, do you want to add them? + + + + + 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? + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + Editar Verso + + + + &Verse type: + + + + + &Insert + + + + + SongsPlugin.ImportWizardForm + + + No OpenLyrics Files Selected + + + + + You need to add at least one OpenLyrics song file to import from. + + + + + No OpenSong Files Selected + + + + + You need to add at least one OpenSong song file to import from. + + + + + No CCLI Files Selected + + + + + You need to add at least one CCLI file to import from. + + + + + No CSV File Selected + + + + + You need to specify a CSV file to import from. + + + + + Starting import... + Iniciando importación... + + + + Song Import Wizard + + + + + Welcome to the Song Import Wizard + + + + + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. + + + + + Select Import Source + Seleccione Origen de Importación + + + + Select the import format, and where to import from. + Seleccione el formato y el lugar del cual importar. + + + + Format: + Formato: + + + + OpenLyrics + + + + + OpenSong + OpenSong + + + + CCLI + + + + + CSV + CSV + + + + Add Files... + + + + + Remove File(s) + + + + + Filename: + + + + + Browse... + + + + + Importing + Importando + + + + Please wait while your songs are imported. + + + + + Ready. + Listo. + + + + %p% + + + + + SongsPlugin.MediaItem + + + Song + Canción + + + + Song Maintenance + + + + + Maintain the lists of authors, topics and books + Administrar la lista de autores, categorías y libros + + + + Search: + Buscar: + + + + Type: + Tipo: + + + + Clear + Limpiar + + + + Search + Buscar + + + + Titles + Títulos + + + + Lyrics + Letra + + + + Authors + Autores + + + + %s (%s) + + + + + You must select an item to edit. + + + + + You must select an item to delete. + + + + + Delete song? + + + + + Delete %d songs? + + + + + Delete Confirmation + + + + + CCLI Licence: + Licencia CCLI: + + + + SongsPlugin.SongBookForm + + + Edit Book + Editar Himnario + + + + &Name: + + + + + &Publisher: + + + + + Error + Error + + + + You need to type in a name for the book. + + + + + SongsPlugin.SongImport + + + copyright + + + + + © + + + + + SongsPlugin.SongMaintenanceForm + + + Song Maintenance + + + + + Authors + Autores + + + + Topics + Categoría + + + + Books/Hymnals + Libros/Himnarios + + + + &Add + + + + + &Edit + &Editar + + + + &Delete + + + + + Error + Error + + + + Couldn't add your author. + + + + + Couldn't add your topic. + + + + + Couldn't add your book. + + + + + Couldn't save your author. + + + + + Couldn't save your topic. + + + + + Couldn't save your book. + + + + + Delete Author + Borrar Autor + + + + Are you sure you want to delete the selected author? + ¿Está seguro que desea eliminar el autor seleccionado? + + + + This author can't 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 can't 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 can't 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 + Archivo de Salida + + + + SongsPlugin.SongsTab + + + Songs + Canciones + + + + Songs Mode + Modo de canciones + + + + Enable search as you type + + + + + Display Verses on Live Tool bar + + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + Mantenimiento de Categorías + + + + Topic name: + Categoría: + + + + Error + Error + + + + You need to type in a topic name! + ¡Usted tiene que escribir un nombre para la categoría! + + + + Splashscreen + + + Starting + Iniciando + + + + Splash Screen + Pantalla de Bienvenida + + + ThemeManager - - A theme with this name already exists, would you like to overwrite it? - Ya existe un tema con este nombre, ¿quiere reemplazarlo? + + Import Theme + Importar Tema + - - Export a theme - Exportar un tema - - - AmendThemeForm + + Delete Theme + Eliminar Tema + - - Open file - Abrir archivo - - - Ui_TopicsDialog + + Error + Error + - - Topic Maintenance - Mantenimiento de Categorías - - - Ui_customEditDialog + + Edit Theme + Editar Tema + - - Clear edit area - Limpiar el área de edición - - - Ui_AmendThemeDialog + + Export Theme + Exportar Tema + - - Show Outline: - Mostrar: - - - SongBookForm + + Theme Exists + Ya existe el Tema + - - You need to type in a book name! - ¡Debe ingresar el nombre del himnario! - - - ImportWizardForm + + Save Theme - (%s) + Guardar Tema - (%s) + - - Open OpenSong Bible - Abrir Biblia OpenSong - - - Ui_MainWindow + + Select Theme Import File + Seleccione el Archivo de Tema a Importar + - - Look && &Feel - A&pariencia& en que letra? - - - Ui_BibleImportWizard + + New Theme + Tema Nuevo + - - Ready. - Listo. - - - Ui_SongMaintenanceDialog + + Create a new theme. + + - - Books/Hymnals - Libros/Himnarios - - - Ui_AboutDialog + + Edit a theme. + + - - Contribute - Contribuir - - - Ui_AmendThemeDialog + + Delete a theme. + + - - Gradient - Gradiente - - - AlertsTab + + Import a theme. + + - - Font Size: - Tamaño: - - - Ui_OpenSongExportDialog + + Export a theme. + + - - Full Song List - Lista Completa de Canciones - - - Ui_AmendThemeDialog + + &Edit Theme + + - - Circular - Circular - - + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + You are unable to delete the default theme. + + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Theme (*.*) + + + + + File is not a valid theme. +The content encoding is not UTF-8. + + + + + File is not a valid theme. + + + + + A theme with this name already exists. Would you like to overwrite it? + + + + + ThemesTab + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Utilice el tema de cada canción en la base de datos. Si una canción no tiene un tema asociado, utilizar el tema del servicio. Si el servicio no tiene un tema, utilizar el tema global. + + + + Use the global theme, overriding any themes associated with either the service or the songs. + Utilice el tema global, ignorado los temas asociados con el servicio o con las canciones. + + + + Themes + Temas + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + Utilizar el tema del servicio, ignorando el tema de las canciones individuales. Si el servicio no tiene un tema, utilizar el tema global. + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + &Service Level + + + + + &Global Level + + + + + VerseType + + + Verse + Verso + + + + Chorus + Coro + + + + Bridge + Puente + + + + Pre-Chorus + Pre-Coro + + + + Intro + Intro + + + + Ending + Final + + + + Other + Otro + + diff --git a/resources/i18n/openlp_et.ts b/resources/i18n/openlp_et.ts index 5af0470e8..021059797 100644 --- a/resources/i18n/openlp_et.ts +++ b/resources/i18n/openlp_et.ts @@ -253,18 +253,18 @@ This General Public License does not permit incorporating your program into prop AlertsPlugin - + &Alert - - Show an alert message + + <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen + + Show an alert message. @@ -316,21 +316,21 @@ This General Public License does not permit incorporating your program into prop - - Item selected to Add + + New Alert - - Missing data + + You haven't specified any text for your alert. Please type in some text before clicking New. AlertsPlugin.AlertsManager - - Alert message created and delayed + + Alert message created and displayed. @@ -342,265 +342,260 @@ This General Public License does not permit incorporating your program into prop - + Font - + Font Name: - + Font Color: - + Background Color: - + Font Size: - + pt pt - + Alert timeout: - + s s - + Location: - + Preview Eelvaade - + openlp.org - + Top Üleval - + Bottom All + + + Middle + Keskel + AmendThemeForm - + Theme Maintenance Kujunduste haldus - - Theme Name: - Kujunduse nimi: - - - + Opaque Läbipaistmatu - + Transparent Läbipaistev - + Solid Color Ühtlane värv - + Gradient Üleminek - + Image Pilt - + Image: Pilt: - + Horizontal Horisontaalne - + Vertical Vertikaalne - + Circular Ümmargune - + Main Font Peamine kirjastiil - + Font: Kirjastiil: - + Size: Suurus: - + pt pt - + Normal Tavaline - + Bold Rasvane - + Italics Kursiiv - + Bold/Italics Rasvane/kaldkiri - + Display Location Kuva asukoht - + Width: Laius: - + Height: Kõrgus: - + px px - + Footer Font Jaluse kirjatüüp - + Outline Välisjoon - + Shadow Vari - + Alignment Joondus - + Left Vasakul - + Right Paremal - + Center Keskel - + Top Üleval - + Middle Keskel - + Bottom All - + Slide Transition Slaidide üleminek - + Preview Eelvaade - - Visibility: - - - - + Type: Liik: - + Gradient: - + &Background @@ -610,92 +605,82 @@ This General Public License does not permit incorporating your program into prop - + Wrap indentation: - + Adjust line spacing: - + Style: - - Use default location: - - - - + X position: - + Y position: - + &Main Font - + &Footer Font - + Outline size: - + Outline color: - + Show outline: - + Shadow size: - + Shadow color: - + Show shadow: - + Horizontal align: - + Vertical align: - - Transition active: - - - - + &Other Options @@ -724,11 +709,31 @@ This General Public License does not permit incorporating your program into prop Slide height is %s rows. + + + &Visibility: + + + + + Theme &name: + + + + + Use default location + + + + + Transition active + + BibleDB - + Book not found @@ -736,12 +741,12 @@ This General Public License does not permit incorporating your program into prop BiblePlugin - + &Bible - + <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. @@ -753,78 +758,78 @@ This General Public License does not permit incorporating your program into prop Bibles + + + BiblesPlugin.BiblesTab Verse Display - - - Layout Style: - - - - - Display Style: - - - - - Bible Theme: - - - - - verse per slide - - - - - verse per line - - - - - continuous - - - - - No brackets - - - - - ( and ) - - - - - { and } - - - - - [ and ] - - - - - Display Dual Bible Verses - - Only show new chapter numbers - - - BiblesPlugin.BiblesTab + + + Layout style: + + + + + Display style: + + + + + Bible theme: + + + + + Verse Per Slide + + + + + Verse Per Line + + + + + Continuous + + + + + No Brackets + + + + + ( And ) + + + + + { And } + + + + + [ And ] + + Note: -Changes don't affect verses already in the service +Changes do not affect verses already in the service. + + + + + Display dual Bible verses @@ -860,26 +865,6 @@ Changes don't affect verses already in the service Web Download - - - File Location: - - - - - Books Location: - - - - - Verse Location: - - - - - Bible Filename: - - Location: @@ -925,11 +910,6 @@ Changes don't affect verses already in the service License Details - - - Version Name: - - Copyright: @@ -951,22 +931,22 @@ Changes don't affect verses already in the service - + Open OSIS File - + Open Books CSV File - + Open OpenSong Bible - + Starting import... @@ -1006,201 +986,226 @@ Changes don't affect verses already in the service - + Invalid Bible Location - + You need to specify a file to import your Bible from. - + Invalid Books File - + You need to specify a file with books of the Bible to use in the import. - + Invalid Verse File - + You need to specify a file of Bible verses to import. - + Invalid OpenSong Bible - + You need to specify an OpenSong Bible file to import. - + Empty Version Name - + You need to specify a version name for your Bible. - + Empty Copyright - + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - + Bible Exists - + This Bible already exists! Please import a different Bible or first delete the existing one. - + Open Verses CSV File - + Finished import. - + Your Bible import failed. + + + File location: + + + + + Books location: + + + + + Verse location: + + + + + Bible filename: + + + + + Version name: + + BiblesPlugin.MediaItem - + Bible - + Quick - + Advanced - + Version: Versioon: - + Dual: - - Search Type: - - - - + Find: - + Search - + Results: - + Book: - + Chapter: - + Verse: - + From: - + To: - + Verse Search - + Text Search - + Clear - + Keep - + No Book Found - + etc - - Bible not fully loaded + + No matching book could be found in this Bible. - - No matching book could be found in this Bible. + + Search type: + + + + + Bible not fully loaded. @@ -1215,7 +1220,7 @@ Changes don't affect verses already in the service CustomPlugin - + <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> @@ -1228,165 +1233,162 @@ Changes don't affect verses already in the service - - Display Footer + + Custom Display - - Custom Display + + Display footer CustomPlugin.EditCustomForm - + Edit Custom Slides Kohandatud slaidide muutmine - - Move slide Up 1 - Slaidi liigutamine 1 võrra üles - - - - Move slide down 1 - Slaidi liigutamine 1 võrra alla - - - - Title: - Pealkiri: - - - + Add New Uue lisamine - - Add new slide at bottom - Uue slaidi lisamine lõppu - - - + Edit Muuda - - Edit selected slide - Valitud slaidi muutmine - - - + Edit All Kõigi muutmine - - Edit all slides - Kõigi slaidide muutmine - - - + Save Salvesta - - Replace edited slide - Muudetud slaidi asendamine - - - + Delete Kustuta - - Delete selected slide - Valitud slaidi kustutamine - - - + Clear Puhasta - + Clear edit area Muutmise ala puhastamine - + Split Slide Tükelda slaid - - Add slide split - Lisa slaidide tükeldus - - - - Theme: - Kujundus: - - - - Credits: - Autorid: - - - + Save && Preview Salvesta && eelvaatle - + Error Viga + + + Move slide up once position. + + + + + Move slide down one position. + + + + + &Title: + + + + + Add a new slide at bottom. + + + + + Edit the selected slide. + + + + + Edit all the slides at once. + + + + + Save the slide currently being edited. + + + + + Delete the selected slide. + + + + + Split a slide into two by inserting a slide splitter. + + + + + The&me: + + + + + &Credits: + + - You need to enter a title - Pead sisestama pealkirja + You need to type in a title. + - You need to enter a slide - Pead sisenema slaidile + You need to add at least one slide + + + + + You have one or more unsaved slides, please either save your slide(s) or clear your changes. + CustomPlugin.MediaItem - + Custom - - You must select an item to edit. + + You haven't selected an item to edit. - - You must select an item to delete. + + You haven't selected an item to delete. - - CustomPlugin.editCustomForm - - - You have unsaved data, please save or clear - Sul on salvestamata andmeid, palun salvesta või tühjenda - - DisplayTab @@ -1394,131 +1396,131 @@ Changes don't affect verses already in the service Displays Kuva - - - Amend Display Settings - - Default Settings - - - X - - - - - Y - - - - - Height - - Width + + + X: + + + + + Y: + + + + + Height: + Kõrgus: + + + + Width: + Laius: + - Amend Settings + Custom Settings - Override Output Display + Override display settings GeneralTab - + CCLI Details CCLI andmed - + SongSelect Password: SongSelecti parool: - + primary peamine - + Application Startup Rakenduse käivitumine - + Select monitor for output display: Vali väljundkuva monitor: - + Application Settings Rakenduse sätted - + SongSelect Username: SongSelecti kasutajanimi: - + CCLI Number: CCLI number: - + Automatically open the last service Automaatselt avatakse viimane teenistus - + Preview Next Song from Service Manager Teenistuse haldurist kuvatakse järgmise laulu eelvaade - + Show blank screen warning Kuvatakse tühja ekraani hoiatust - + Prompt to save Service before starting New Uue teenistuse loomise pakutakse vana salvestamist - + General Üldine - + Show the splash screen Käivitumisel kuvatakse logo - + Screen Ekraan - + Monitors Monitorid - + Display if a single screen Kuvatakse, kui on ainult üks ekraan @@ -1526,7 +1528,7 @@ Changes don't affect verses already in the service ImagePlugin - + <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> @@ -1557,55 +1559,50 @@ Changes don't affect verses already in the service ImagePlugin.MediaItem - + Image Pilt - + Select Image(s) Pildi (piltide) valimine - + All Files - + Replace Live Background Ekraani tausta asendamine - + You must select an item to delete. - + Image(s) Pilt(pildid) - - No item selected - Ühtegi kirjet pole valitud - - - - You must select one item - Pead valima ühe kirje + + You must select an item to process. + LanguageManager - + Language Keel - + After restart new Language settings will be used. Keele sätteid kasutatakse pärast taaskäivitust. @@ -1613,537 +1610,572 @@ Changes don't affect verses already in the service MainWindow - + The Main Display has been blanked out Peakuva on tühi - + OpenLP Version Updated OpenLP uuendus - + Save Changes to Service? Kas salvestada teenistusse tehtud muudatused? - + OpenLP Main Display Blanked OpenLP peakuva on tühi - - Open an existing service - Olemasoleva teenistuse valimine - - - + List the Plugins Pluginate loend - + &Service Manager &Teenistuse haldur - + Open Service Teenistuse avamine - + Media Manager Meediahaldur - + Alt+F4 Alt+F4 - - Toggle the visibility of the Preview Panel - Eelvaatluspaneeli nähtavuse muutmine - - - + &User Guide &Kasutajajuhend - + &Import &Impordi - + Quit OpenLP Lahku OpenLPst - + &Preview Panel &Eelvaatluspaneel - + &New &Uus - + Ctrl+N Ctrl+N - + Toggle Preview Panel Eelvaatluspaneeli lüliti - + &Live &Otse - + F9 F9 - + F8 F8 - - Save the current service to disk - Selle teenistuse salvestamine kettale - - - + Add &Tool... Lisa &tööriist... - - Create a new Service - Uue teenistuse loomine - - - + &View &Vaade - + &Export &Ekspordi - + &Open &Ava - + Toggle Theme Manager Kujunduse halduri lüliti - + &Settings &Sätted - - &Options - &Valikud - - - + Ctrl+S Ctrl+S - + Ctrl+O Ctrl+O - + &File &Fail - + E&xit &Välju - + &Help A&bi - + Toggle Service Manager Teenistuse halduri lüliti - + Ctrl+F1 Ctrl+F1 - - Save the current service under a new name - Salvesta see teenistus uue nimega - - - + &Web Site &Veebileht - + M&ode &Režiim - + Service Manager Teenistuse haldur - + &Theme &Kujundus - + &Language &Keel - + &About &Lähemalt - + &Plugin List &Pluginate loend - + English Eesti - + Save Service As Salvesta teenistus kui - + New Service Uus teenistus - + &Online Help &Abi veebis - + Save Service Salvesta teenistus - + Save &As... Salvesta &kui... - - Toggle the visibility of the Media Manager - Meediahalduri nähtavuse lüliti - - - + F11 F11 - + F10 F10 - + F12 F12 - + Alt+F7 Alt+F7 - - Add an application to the list of tools - Rakenduse lisamine tööriistade loendisse - - - + Theme Manager Kujunduse haldur - - Toggle the visibility of the Theme Manager - Kujunduse halduri nähtavuse lüliti - - - - &Preview Pane - &Eelvaatluspaan - - - + &Theme Manager &Kujunduse haldur - - Toggle the visibility of the Service Manager - Teenistuse halduri nähtavuse lüliti - - - + More information about OpenLP Lähem teave OpenLP kohta - + &Media Manager &Meediahaldur - + &Tools &Tööriistad - + Toggle Media Manager Meediahalduri lüliti - + &Save &Salvesta - + OpenLP 2.0 OpenLP 2.0 - - Look && &Feel - Välimus && &tunnetus - - - + &Auto Detect &Isetuvastus - - Choose System language, if available - Võimalusel kasutatakse süsteemi keelt - - - + Set the interface language to %s - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org - + Your service has changed. Do you want to save those changes? - + Default Theme: %s + + + Create a new service. + + + + + Open an existing service. + + + + + Save the current service to disk. + + + + + Save the current service under a new name. + + + + + Ctrl+Shift+S + + + + + &Configure OpenLP... + + + + + Toggle the visibility of the media manager. + + + + + Toggle the visibility of the theme manager. + + + + + Toggle the visibility of the service manager. + + + + + Toggle the visibility of the preview panel. + + + + + &Live Panel + + + + + Toggle Live Panel + + + + + Toggle the visibility of the live panel. + + + + + Use the system language, if available. + + + + + Add an application to the list of tools. + + + + + &Default + + + + + Set the view mode back to the default. + + + + + &Setup + + + + + Set the view mode to Setup. + + + + + Set the view mode to Live. + + MediaManagerItem - + Invalid Service Item Vigane teenistuse element - + No Items Selected Ühtegi elementi pole valitud - + You must select one or more items Pead valima vähemalt ühe elemendi - + &Add to selected Service Item &Lisa valitud teenistuse elemendile - + No items selected Ühtegi elementi pole valitud - + &Add to Service &Lisa teenistusele - + Send the selected item live Valitud kirje saatmine ekraanile - + Add the selected item(s) to the service Valitud kirje(te) lisamine teenistusse - + Delete the selected item Valitud elemendi kustutamine - + No Service Item Selected Ühtegi teenistuse elementi pole valitud - + &Show Live &Kuva ekraanil - + Preview the selected item Valitud kirje eelvaatlus - + You must select one or more items. Pead valima vähemalt ühe elemendi. - + You must select an existing service item to add to. Pead valima olemasoleva teenistuse, millele lisada. - + Import %s - + Import a %s - + Load %s - + Load a new %s - + New %s - + Add a new %s - + Edit %s - + Edit the selected %s - + Delete %s - + Preview %s - + Add %s to Service - + &Edit %s - + &Delete %s - + &Preview %s - + You must select one or more items to preview. - + You must select one or more items to send live. - + You must select a %s service item. @@ -2151,7 +2183,7 @@ You can download the latest version from http://openlp.org MediaPlugin - + <b>Media Plugin</b><br>This plugin allows the playing of audio and video media <b>Meedia plugin</b><br>See plugin võimaldab audio ja video esitamise @@ -2159,20 +2191,25 @@ You can download the latest version from http://openlp.org MediaPlugin.MediaItem - + Media Meedia - + Select Media Meedia valimine - + You must select an item to delete. + + + Replace Live Background + + OpenLP @@ -2307,7 +2344,7 @@ You can download the latest version from http://openlp.org RemotePlugin - + <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer via a web browser or other app<br>The Primary use for this would be to send alerts from a creche @@ -2356,12 +2393,12 @@ You can download the latest version from http://openlp.org Kas salvestada teenistusse tehtud muudatused? - + Open Service Teenistuse avamine - + Move to top Tõsta üles @@ -2386,7 +2423,7 @@ You can download the latest version from http://openlp.org Kujundus: - + Delete From Service Teenistusest kustutamine @@ -2401,7 +2438,7 @@ You can download the latest version from http://openlp.org &Otsesalm - + Move to &top Liiguta ü&lemiseks @@ -2421,17 +2458,17 @@ You can download the latest version from http://openlp.org &Kustuta teenistusest - + Move up order Järjekorras üles liigutamine - + Move down order Järjekorras alla liigutamine - + Move &down Liiguta &alla @@ -2441,7 +2478,7 @@ You can download the latest version from http://openlp.org Välise teenistuse laadimine - + Move to end Viimaseks tõstmine @@ -2451,7 +2488,7 @@ You can download the latest version from http://openlp.org &Halda elementi - + Move &up Liiguta &üles @@ -2461,7 +2498,7 @@ You can download the latest version from http://openlp.org &Muuda kirjet - + Move to &bottom Liiguta &alumiseks @@ -2486,12 +2523,12 @@ You can download the latest version from http://openlp.org 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 @@ -2551,17 +2588,12 @@ The content encoding is not UTF-8. Eelmisele liikumine - - Theme Screen - Kujunduse ekraan - - - + Go to Verse Liikumine salmile - + Start continuous loop Katkematu korduse alustamine @@ -2571,20 +2603,15 @@ The content encoding is not UTF-8. Ekraan - + Start playing media Meediaesituse alustamine - + Move to live Tõsta ekraanile - - - Hide Screen - Peida ekraan - Move to last @@ -2601,12 +2628,7 @@ The content encoding is not UTF-8. Liikumine esimesele - - Blank Screen - Tühi ekraan - - - + Delay between slides in seconds Viivitus slaidide vahel sekundites @@ -2616,20 +2638,25 @@ The content encoding is not UTF-8. Eelvaade - + Stop continuous loop Katkematu korduse lõpetamine - + s s - + Edit and re-preview Song Muuda ja kuva laulu eelvaade uuesti + + + Hide + + SongUsagePlugin @@ -2677,58 +2704,58 @@ The content encoding is not UTF-8. SongsPlugin - + &Song - + Import songs using the import wizard. - + Songs of Fellowship (temp menu item) - + Import songs from the VOLS1_2.RTF, sof3words.rtf and sof4words.rtf supplied with the music books - + Generic Document/Presentation Import (temp menu item) - + Import songs from Word/Writer/Powerpoint/Impress - + Open Songs of Fellowship file - + Import Error - + Error importing Songs of Fellowship file. OpenOffice.org must be installed and you must be using an unedited copy of the RTF included with the Songs of Fellowship Music Editions - + Open documents or presentations - + <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. @@ -2767,42 +2794,42 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.AuthorsForm - + Author Maintenance Autorite haldus - + Display name: Kuvatav nimi: - + First name: Eesnimi: - + Last name: Perekonnanimi: - + Error Viga - + You need to type in the first name of the author. Pead sisestama autori eesnime. - + You need to type in the last name of the author. Pead sisestama autori perekonnanime. - + You haven't set a display name for the author, would you like me to combine the first and last names for you? Sa pole sisestanud autori kuvatavat nime. Kas see tuleks kombineerida ees- ja perekonnanimest? @@ -2810,187 +2837,187 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.EditSongForm - + Song Editor Lauluredaktor - + &Title: - + &Lyrics: - + &Verse Order: - + &Add - + &Edit &Muuda - + Ed&it All - + &Delete &Kustuta - + Title && Lyrics Pealkiri && laulusõnad - + Authors Autorid - + &Add to Song &Lisa laulule - + &Remove &Eemalda - + &Manage Authors, Topics, Books &Autorite, teemade, raamatute haldamine - + Topic Teema - + A&dd to Song L&isa laulule - + R&emove &Eemalda - + Song Book Laulik - + Authors, Topics && Book Autorid, teemad && laulik - + Theme Kujundus - + Copyright Information Autoriõiguse andmed - + CCLI Number: CCLI number: - + Comments Kommentaarid - + Theme, Copyright Info && Comments Kujundus, autoriõigus && kommentaarid - + Add Author - + This author does not exist, do you want to add them? - + 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. - + Alt&ernate Title: - + New &Theme - + © @@ -3000,32 +3027,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? @@ -3189,87 +3216,87 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.MediaItem - + Song - + Song Maintenance - + Search: - + Type: - + Clear - + Search - + Titles - + Lyrics - + Authors - + %s (%s) - + Delete Confirmation - + CCLI Licence: - + Maintain the lists of authors, topics and books - + You must select an item to edit. - + You must select an item to delete. - + Delete song? - + Delete %d songs? @@ -3277,31 +3304,44 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.SongBookForm - + Edit Book - + &Name: - + &Publisher: - + Error Viga - + You need to type in a name for the book. + + SongsPlugin.SongImport + + + copyright + + + + + © + + + SongsPlugin.SongMaintenanceForm @@ -3340,97 +3380,92 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R &Kustuta - + Delete Author - + Delete Topic - + Delete Book - - No book selected! - - - - + Error Viga - + Couldn't add your author. - + Couldn't add your topic. - + Couldn't add your book. - + Couldn't save your author. - + Couldn't save your topic. - + Couldn't save your book. - + Are you sure you want to delete the selected author? - + This author can't be deleted, they are currently assigned to at least one song. - + No author selected! - + Are you sure you want to delete the selected topic? - + This topic can't be deleted, it is currently assigned to at least one song. - + No topic selected! - + Are you sure you want to delete the selected book? - + This book can't be deleted, it is currently assigned to at least one song. @@ -3482,22 +3517,22 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R SongsPlugin.TopicsForm - + Topic Maintenance - + Topic name: - + Error Viga - + You need to type in a topic name! @@ -3528,7 +3563,7 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Teema kustutamine - + Error Viga @@ -3543,37 +3578,37 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R Kujunduse eksportimine - + You are unable to delete the default theme. Vaikimisi kujundust pole võimalik kustutada. - + File is not a valid theme. See fail ei ole sobilik kujundus. - + Theme Exists Kujundus on juba olemas - + Save Theme - (%s) Salvesta kujundus - (%s) - + Select Theme Import File Importimiseks kujunduse faili valimine - + New Theme Uus kujundus - + You have not selected a theme. Sa ei ole teemat valinud. @@ -3623,56 +3658,66 @@ OpenOffice.org must be installed and you must be using an unedited copy of the R - + %s (default) - + Theme %s is use in %s plugin. - + Theme %s is use by the service manager. - + Theme Exported - + Your theme has been successfully exported. - + Theme Export Failed - + Your theme could not be exported due to an error. - + Theme (*.*) - + File is not a valid theme. The content encoding is not UTF-8. - + A theme with this name already exists. Would you like to overwrite it? + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + ThemesTab @@ -3725,37 +3770,37 @@ The content encoding is not UTF-8. VerseType - + Verse - + Chorus - + Bridge - + Pre-Chorus - + Intro - + Ending - + Other diff --git a/resources/i18n/openlp_hu.ts b/resources/i18n/openlp_hu.ts index 4fdcd3f2f..a5e69a0d4 100644 --- a/resources/i18n/openlp_hu.ts +++ b/resources/i18n/openlp_hu.ts @@ -1,6 +1,5 @@ - - + AboutForm @@ -31,7 +30,7 @@ Az OpenLP-t önkéntesek készítették és tartják karban. Ha szeretne több k Névjegy - + Project Lead Raoul "superfly" Snyman @@ -91,14 +90,14 @@ Csomagolók Raoul „superfly” Snyman (Windows) - + Credits Közreműködők - - Copyright © 2004-2010 Raoul Snyman -Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard + + Copyright © 2004-2010 Raoul Snyman +Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. @@ -358,660 +357,512 @@ Aláírás: Tira Mihály, 1989. április 1. Tira Mihály ügyvezető A GNU General Public License nem engedi meg, hogy a program része legyen szellemi tulajdont képező programoknak. Ha a program egy szubrutinkönyvtár, akkor megfontolhatja, hogy nem célszerűbb-e megengedni, hogy szellemi tulajdont képező alkalmazásokkal is összefűzhető legyen a programkönyvtár. Ha ezt szeretné, akkor a GPL helyett a GNU LGPL-t kell használni. - + License Licenc - + Contribute Részvétel - + Close Bezárás - - build - + + build %s + - AlertForm + AlertsPlugin - + + &Alert + &Figyelmeztetés + + + + <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen + <b>Figyelmeztető bővítmény</b><br/>Ez a bővítmény kezeli a vetítőn megjelenő figyelmeztetéseket + + + + Show an alert message. + + + + + AlertsPlugin.AlertForm + + Alert Message - Figyelmeztetés + Figyelmeztetés - + Alert &text: - Figyelmeztető &szöveg: + Figyelmeztető &szöveg: - + &Parameter(s): - &Paraméterek: + &Paraméterek: - + &New - &Új + &Új - + &Save - &Mentés + M&entés - + &Delete - &Törlés + &Törlés - + Displ&ay - &Megjelenítés + &Megjelenítés - + Display && Cl&ose - M&egjelenítés és bezárás + M&egjelenítés és bezárás - + &Close - &Bezárás + &Bezárás - - Item selected to Add - Hozzáadásra kiválasztott elem + + New Alert + - - Missing data - Hiányos adatok + + You haven't specified any text for your alert. Please type in some text before clicking New. + - AlertsTab + AlertsPlugin.AlertsManager - - pt - pt - - - - Location: - Hely: - - - - Font Color: - Betűszín: - - - - Font - Betűkészlet - - - - Font Name: - Betűkészlet neve: - - - - Preview - Előnézet + + Alert message created and displayed. + + + + AlertsPlugin.AlertsTab Alerts - Figyelmeztetések + Figyelmeztetések - - Alert timeout: - Figyelmeztetés késleltetése: - - - - openlp.org - openlp.org + + Font + Betűkészlet - Background Color: - Háttérszín: + Font Name: + Betűkészlet neve: + + + + Font Color: + Betűszín: - s - mp + Background Color: + Háttérszín: - - Bottom - Alul + + Font Size: + Betűméret: - Top - Felül + pt + - - Font Size: - Betűméret: + + Alert timeout: + Figyelmeztetés késleltetése: + + + + s + mp + + + + Location: + Hely: + + + + Preview + Előnézet + + + + openlp.org + openlp.org + + + + Top + Felülre + + + + Middle + Középre + + + + Bottom + Alulra AmendThemeForm - - Slide Height is %s rows - A dia magassága %s sor - - - - First Color: - Első szín: - - - - Second Color: - Második szín: - - - - Background Color: - Háttérszín: - - - + Theme Maintenance Témák kezelése - - Theme Name: - Téma neve: - - - - Background: - Háttér: - - - + Opaque Átlátszatlan - + Transparent Átlátszó - - Background Type: - Háttér típusa: - - - + Solid Color Homogén szín - + Gradient Színátmenet - + Image Kép - - <Color1> - - - - - <Color2> - - - - + Image: Kép: - - Gradient : - Színátmenet: - - - + Horizontal Vízszintes - + Vertical Függőleges - + Circular Körkörös - - Background - Háttér - - - + Main Font Alap betűkészlet - + Font: Betűkészlet: - - Font Color: - Betűszín: - - - + Size: Méret: - + pt - - Wrap Indentation - Sortörési behúzás - - - - Adjust Line Spacing - Sorköz igazítása - - - + Normal Normál - + Bold Félkövér - + Italics Dőlt - + Bold/Italics Félkövér dőlt - - Font Weight: - Betűvastagság: - - - + Display Location Hely megjelenítése - - Use Default Location: - Alapértelmezett hely alkalmazása: - - - - X Position: - X pozíció: - - - - Y Position: - Y pozíció: - - - + Width: Szélesség: - + Height: Magasság: - + px - - Font Main - Alap betűkészlet - - - + Footer Font Lábjegyzet betűkészlete - - Font Footer - Lábjegyzet betűkészlet - - - + Outline Körvonal - - Outline Size: - Körvonal mérete: - - - - Outline Color: - Körvonal színe: - - - - Show Outline: - Körvonal megjelenítése: - - - + Shadow Árnyék - - Shadow Size: - Árnyék mérete: - - - - Shadow Color: - Árnyék színe: - - - - Show Shadow: - Árnyék megjelenítése: - - - + Alignment Igazítás - - Horizontal Align: - Vízszintes igazítás: - - - + Left Balra zárt - + Right Jobbra zárt - + Center Középre igazított - - Vertical Align: - Függőleges igazítás: - - - + Top Felülre - + Middle Középre - + Bottom Alulra - + Slide Transition Diaátmenet - - Transition Active: - Aktív átmenet: - - - - Other Options - További beállítások - - - + Preview Előnézet - - - AuditDeleteDialog - - Song Usage Delete - Dalstatisztika törlése + + &Visibility: + + + + + Type: + Típus: + + + + Gradient: + + + + + &Background + + + + + Color: + + + + + Wrap indentation: + + + + + Adjust line spacing: + + + + + Style: + + + + + X position: + + + + + Y position: + + + + + &Main Font + + + + + &Footer Font + + + + + Outline size: + + + + + Outline color: + + + + + Show outline: + + + + + Shadow size: + + + + + Shadow color: + + + + + Show shadow: + + + + + Horizontal align: + + + + + Vertical align: + + + + + &Other Options + + + + + All Files + + + + + Select Image + + + + + First color: + + + + + Second color: + + + + + Slide height is %s rows. + + + + + Theme &name: + + + + + Use default location + + + + + Transition active + - AuditDetailDialog + BibleDB - - Song Usage Extraction - Dalstatisztika kicsomagolása - - - - Select Date Range - Időintervallum megadása - - - - to - - - - - Report Location - Helyszín jelentése - - - - AuthorsForm - - - You need to type in the first name of the author. - Meg kell adni a szerző vezetéknevét. - - - - You haven't set a display name for the author, would you like me to combine the first and last names for you? - Nem állította be a megjelenített nevet. Szeretné a vezetéknevet és a keresztnevet összeilleszteni? - - - - Error - Hiba - - - - You need to type in the last name of the author. - Meg kell adni a szerző keresztnevét. - - - - Author Maintenance - Szerzők kezelése - - - - Display name: - Megjelenített név: - - - - First name: - Keresztnév: - - - - Last name: - Vezetéknév: - - - - BibleMediaItem - - - Quick - Gyors - - - - Bible - Biblia - - - - Text Search - Szöveg keresése - - - - Find: - Keresés: - - - - Search Type: - Keresés típusa: - - - - Bible not fully loaded - A Biblia nem töltődött be teljesen - - - - No matching book could be found in this Bible. - Nem található ilyen könyv ebben a Bibliában. - - - - Dual: - Második: - - - - Chapter: - Fejezet: - - - - Search - Keresés - - - - Keep - Megtartása - - - - Results: - Eredmények: - - - - Verse Search - Vers keresése - - - - Version: - Verzió: - - - - From: - Innentől: - - - - Book: - Könyv: - - - - No Book Found - Nincs ilyen könyv - - - - Advanced - Haladó - - - - To: - Idáig: - - - - Clear - Törlése - - - - Verse: - Vers: + + Book not found + @@ -1021,952 +872,864 @@ A GNU General Public License nem engedi meg, hogy a program része legyen szelle <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. <strong>Biblia bővítmény</strong><br />Ez a bővítmény különféle igehelyek vetítését teszi lehetővé a szolgálat alatt. + + + &Bible + &Biblia + - BiblesTab - - - ( and ) - ( és ) - - - - verse per line - egy vers soronként - - - - Display Style: - Megjelenítési stílus: - - - - continuous - folytonos - - - - [ and ] - [ és ] - - - - Verse Display - Vers megjelenítés - - - - Display Dual Bible Verses - Kettőzött bibliaversek megjelenítése - - - - Only show new chapter numbers - Csak az új fejezetszámok megjelenítése - - - - Layout Style: - Elrendezési stílus: - - - - No brackets - Nincsenek zárójelek - + BiblesPlugin,BiblesTab Bibles - Bibliák - - - - { and } - { és } - - - - Note: -Changes don't affect verses already in the service - Megjegyzés: -A változások nem érintik a már a szolgálatban lévő igeverseket - - - - verse per slide - egy vers diánként - - - - Bible Theme: - Biblia téma: + Bibliák - CustomMediaItem + BiblesPlugin.BiblesTab - - Custom - Egyedi + + Verse Display + Vers megjelenítés + + + + Only show new chapter numbers + Csak az új fejezetszámok megjelenítése + + + + Layout style: + + + + + Display style: + + + + + Bible theme: + + + + + Verse Per Slide + + + + + Verse Per Line + + + + + Continuous + + + + + No Brackets + + + + + ( And ) + + + + + { And } + + + + + [ And ] + + + + + Note: +Changes do not affect verses already in the service. + + + + + Display dual Bible verses + + + + + BiblesPlugin.ImportWizardForm + + + Bible Import Wizard + Bibliaimportáló tündér + + + + Welcome to the Bible Import Wizard + Üdvözlet a Bibliaimportáló tündérben + + + + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + A tündérrel különféle formátumú Bibliákat lehet importálni. Az alább található Tovább gombra való kattintással indítható a folyamat első lépése a formátum kiválasztásával. + + + + Select Import Source + Válassza ki az importálandó forrást + + + + Select the import format, and where to import from. + Válassza ki a importálandó forrást és a helyet, ahonnan importálja. + + + + Format: + Formátum: + + + + OSIS + OSIS + + + + CSV + + + + + OpenSong + + + + + Web Download + Web letöltés + + + + File location: + + + + + Books location: + + + + + Verse location: + + + + + Bible filename: + + + + + Location: + Hely: + + + + Crosswalk + + + + + BibleGateway + + + + + Bible: + Biblia: + + + + Download Options + Letöltési beállítások + + + + Server: + Szerver: + + + + Username: + Felhasználói név: + + + + Password: + Jelszó: + + + + Proxy Server (Optional) + Proxy szerver (választható) + + + + License Details + Licenc részletek + + + + Set up the Bible's license details. + Állítsa be a Biblia licenc részleteit. + + + + Version name: + + + + + Copyright: + Copyright: + + + + Permission: + Engedély: + + + + Importing + Importálás + + + + Please wait while your Bible is imported. + Kérem, várjon, míg a Biblia importálás alatt áll. + + + + Ready. + Kész. + + + + Invalid Bible Location + Érvénytelen a Biblia elérési útvonala + + + + You need to specify a file to import your Bible from. + Meg kell adni egy fájlt, amelyből a Bibliát importálni lehet. + + + + Invalid Books File + Érvénytelen könyv fájl + + + + You need to specify a file with books of the Bible to use in the import. + Meg kell adni egy fájlt a bibliai könyvekről az importáláshoz. + + + + Invalid Verse File + Érvénytelen versszak fájl + + + + You need to specify a file of Bible verses to import. + Meg kell adni egy fájlt a bibliai versekről az importáláshoz. + + + + Invalid OpenSong Bible + Érvénytelen OpenSong Biblia + + + + You need to specify an OpenSong Bible file to import. + Meg kell adni egy OpenSong Biblia fájlt az importáláshoz. + + + + Empty Version Name + Üres verziónév + + + + You need to specify a version name for your Bible. + Meg kell adni a Biblia verziószámát. + + + + Empty Copyright + Üres a szerzői jog + + + + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + Meg kell adni a szerzői jogokat! A közkincs Bibliákat meg kell jelölni ilyennek. + + + + Bible Exists + Biblia létezik + + + + This Bible already exists! Please import a different Bible or first delete the existing one. + Ez a Biblia már létezik! Kérem, importáljon egy másik Bibliát vagy előbb törölje a meglévőt. + + + + Open OSIS File + OSIS fájl megnyitása + + + + Open Books CSV File + Könyv CSV fájl megnyitása + + + + Open Verses CSV File + Versszak CSV fájl megnyitása + + + + Open OpenSong Bible + OpenSong Biblia megnyitása + + + + Starting import... + Importálás indítása... + + + + Finished import. + Az importálás befejeződött. + + + + Your Bible import failed. + A Biblia importálása nem sikerült. + + + + BiblesPlugin.MediaItem + + + Bible + Biblia + + + + Quick + Gyors + + + + Advanced + Haladó + + + + Version: + Verzió: + + + + Dual: + Második: + + + + Search type: + + + + + Find: + Keresés: + + + + Search + Keresés + + + + Results: + Eredmények: + + + + Book: + Könyv: + + + + Chapter: + Fejezet: + + + + Verse: + Vers: + + + + From: + Innentől: + + + + To: + Idáig: + + + + Verse Search + Vers keresése + + + + Text Search + Szöveg keresése + + + + Clear + + + + + Keep + Megtartása + + + + No Book Found + Nincs ilyen könyv + + + + No matching book could be found in this Bible. + Nem található ilyen könyv ebben a Bibliában. + + + + etc + + + + + Bible not fully loaded. + + + + + BiblesPlugin.Opensong + + + Importing + Importálás CustomPlugin - + <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> <b>Egyedi bővítmény</b><br/>Ez a bővítmény dalokhoz hasonló diák vetítését teszi lehetővé. Ugyanakkor több szabadságot enged meg, mint a dalok bővítmény - CustomTab + CustomPlugin.CustomTab Custom - Egyedi + Egyedi Custom Display - Egyedi megjelenés + Egyedi megjelenés - - Display Footer - Lábjegyzet megjelenítése + + Display footer + + + + + CustomPlugin.EditCustomForm + + + Edit Custom Slides + Egyedi diák szerkesztése + + + + Move slide up once position. + + + + + Move slide down one position. + + + + + &Title: + + + + + Add New + Új hozzáadása + + + + Add a new slide at bottom. + + + + + Edit + Szerkesztés + + + + Edit the selected slide. + + + + + Edit All + Összes szerkesztése + + + + Edit all the slides at once. + + + + + Save + Mentés + + + + Save the slide currently being edited. + + + + + Delete + Törlés + + + + Delete the selected slide. + + + + + Clear + + + + + Clear edit area + Szerkesztő terület törlése + + + + Split Slide + Dia kettéválasztása + + + + Split a slide into two by inserting a slide splitter. + + + + + The&me: + + + + + &Credits: + + + + + Save && Preview + Mentés és előnézet + + + + Error + Hiba + + + + You need to type in a title. + + + + + You need to add at least one slide + + + + + You have one or more unsaved slides, please either save your slide(s) or clear your changes. + + + + + CustomPlugin.MediaItem + + + Custom + Egyedi + + + + You haven't selected an item to edit. + + + + + You haven't selected an item to delete. + DisplayTab - + Displays Megjelenítők - - - EditCustomForm - - You need to enter a title - Meg kell adni egy címet + + Default Settings + - - Error - Hiba + + X: + - - You need to enter a slide - Meg kell adni egy diát + + Y: + - - Save && Preview - Mentés és előnézet + + Height: + Magasság: - - Edit Custom Slides - Egyedi diák szerkesztése + + Width: + Szélesség: - - Move slide Up 1 - Dia mozgatása felfelé + + Custom Settings + - - Move slide down 1 - Dia mozgatása lefelé + + Width + - - Title: - Cím: - - - - Add New - Új hozzáadása - - - - Add new slide at bottom - Új dia hozzáadása alulra - - - - Edit - Szerkesztés - - - - Edit selected slide - Kiválasztott dia szerkesztése - - - - Edit All - Összes szerkesztése - - - - Edit all slides - Összes dia szerkesztése - - - - Save - Mentés - - - - Replace edited slide - Szerkesztett dia cserélése - - - - Delete - Törlés - - - - Delete selected slide - Kiválasztott dia törlése - - - - Clear - Szöveg törlése - - - - Clear edit area - Szerkesztő terület törlése - - - - Split Slide - Dia kettéválasztása - - - - Add slide split - Elválasztás hozzáadása - - - - Theme: - Téma: - - - - Credits: - Közreműködők: - - - - You have unsaved data, please save or clear - Nincs minden adat elmentve, mentse el vagy törölje - - - - EditSongForm - - - You need to enter a song title. - Meg kell adni egy dalcímet. - - - - You need to enter some verses. - Meg kell adni néhány versszakot. - - - - Save && Preview - Mentés és előnézet - - - - Error - Hiba - - - - Song Editor - Dalszerkesztő - - - - Title: - Cím: - - - - Alternative Title: - Alternatív cím: - - - - Lyrics: - Dalszöveg: - - - - Verse Order: - Versszak sorrend: - - - - Add - Hozzáadás - - - - Edit - Szerkesztés - - - - Edit All - Összes szerkesztése - - - - Delete - Törlés - - - - Title && Lyrics - Cím és dalszöveg - - - - Authors - Szerzők - - - - &Add to Song - &Hozzáadás dalhoz - - - - &Remove - &Eltávolítás - - - - &Manage Authors, Topics, Books - &Szerzők, témakörök, könyvek kezelése - - - - Topic - Témakör - - - - A&dd to Song - &Hozzáadás dalhoz - - - - R&emove - &Eltávolítás - - - - Song Book - Daloskönyv - - - - Authors, Topics && Book - Szerzők, témakörök és könyv - - - - Theme - Téma - - - - Add a Theme - Téma hozzáadása - - - - 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 - - - - bitped - - - - - v - - - - - c - - - - - Invalid verse entry - Vx or Cx - Érvénytelen versszak bejegyzés – Vx vagy Cx - - - - Invalid verse entry, values must be I,B,T,P,E,O,Vx,Cx - Érvénytelen versszak bejegyzés – az érvényes értékek: I,B,T,P,E,O,Vx,Cx - - - - EditVerseForm - - - Edit Verse - Versszak szerkesztése - - - - Verse Type: - Versszak típusa: - - - - Verse - Versszak - - - - Chorus - Refrén - - - - Bridge - Mellékdal - - - - Pre-Chorus - Elő-refrén - - - - Intro - Bevezetés - - - - Ending - Befejezés - - - - Other - Egyéb - - - - Insert - Beszúrás + + Override display settings + GeneralTab - + CCLI Details CCLI részletek - + primary elsődleges - + Show blank screen warning Figyelmeztetés megjelenítése a fekete képernyőről - + Application Startup Alkalmazás indítása - + Select monitor for output display: Válassza ki a vetítési képernyőt: - + Application Settings Alkalmazás beállítások - + SongSelect Username: SongSelect felhasználói név: - + CCLI Number: CCLI szám: - + Automatically open the last service Utolsó szolgálat automatikus megnyitása - + Preview Next Song from Service Manager Következő dal előnézete a szolgálatkezelőből - + Prompt to save Service before starting New Rákérdezés a szolgálat mentésére új kezdése előtt - + General Általános - + Show the splash screen Indító képernyő megjelenítése - + Screen Képernyő - + Monitors Monitorok - + SongSelect Password: SongSelect jelszó: - + Display if a single screen Megjelenítés egy képernyő esetén - - ImageMediaItem - - - Select Image(s) - Kép(ek) kiválasztása - - - - Image(s) - Kép(ek) - - - - Image - Kép - - - - Images (*.jpg *.jpeg *.gif *.png *.bmp);; All files (*) - Képek (*.jpg *.jpeg *.gif *.png *.bmp);; Minden fájl (*) - - - - Replace Live Background - Egyenes adás háttérének cseréje - - - - No item selected - Nincs kiválasztott elem - - - - You must select one item - Ki kell választani egy elemet - - ImagePlugin - - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> - <b>Kép bővítmény</b><br />Ez a bővítmény mindenféle kép vetítését teszi lehetővé. Ha több kép együtt van kiválasztva és vetítve, az egyenes adás vezérlőn lehetőség van időzített körkörös lejátszásra.<br/>Ha a bővítményben a <i>Háttér felülírása</i> be van kapcsolva és egy kép ki van jelölve, minden megjelenített dalnak a kiválasztott kép lesz a háttérképe a témában megadott helyett.<br /> + + <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> + - ImageTab + ImagePlugin.ImageTab - - sec - mp + + Images + Képek Image Settings - Kép beállítások + Kép beállítások - + Slide Loop Delay: - Időzített diák késleltetése: + Időzített diák késleltetése: - - Images - Képek + + sec + mp - ImportWizardForm + ImagePlugin.MediaItem - - Invalid Bible Location - Érvénytelen a Biblia elérési útvonala + + Image + Kép - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - Meg kell adni a szerzői jogokat! A közkincs Bibliákat meg kell jelölni ilyennek. + + Select Image(s) + Kép(ek) kiválasztása - - Bible Exists - Biblia létezik + + All Files + - - Empty Copyright - Üres a szerzői jog + + Replace Live Background + - - Empty Version Name - Üres verziónév + + You must select an item to delete. + - - Invalid OpenSong Bible - Érvénytelen OpenSong Biblia + + Image(s) + Kép(ek) - - Your Bible import failed. - A Biblia importálása nem sikerült. - - - - Finished import. - Az importálás befejeződött. - - - - This Bible already exists! Please import a different Bible or first delete the existing one. - Ez a Biblia már létezik! Kérem, importáljon egy másik Bibliát vagy előbb törölje a meglévőt. - - - - Starting import... - Importálás indítása... - - - - Invalid Books File - Érvénytelen könyv fájl - - - - Invalid Verse File - Érvénytelen versszak fájl - - - - Open OpenSong Bible - OpenSong Biblia megnyitása - - - - Bible Import Wizard - Bibliaimportáló tündér - - - - Welcome to the Bible Import Wizard - Üdvözlet a Bibliaimportáló tündérben - - - - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - A tündérrel különféle formátumú Bibliákat lehet importálni. Az alább található Tovább gombra való kattintással indítható a folyamat első lépése a formátum kiválasztásával. - - - - Select Import Source - Válassza ki az importálandó forrást - - - - Select the import format, and where to import from. - Válassza ki a importálandó forrást és a helyet, ahonnan importálja. - - - - Format: - Formátum: - - - - OSIS - OSIS - - - - CSV - CSV - - - - OpenSong - OpenSong - - - - Web Download - Web letöltés - - - - File Location: - Fájl helye: - - - - Books Location: - Könyvek helye: - - - - Verse Location: - Vers helye: - - - - Bible Filename: - Biblia fájl: - - - - Location: - Hely: - - - - Crosswalk - - - - - BibleGateway - - - - - Bible: - Biblia: - - - - Download Options - Letöltési beállítások - - - - Server: - Szerver: - - - - Username: - Felhasználói név: - - - - Password: - Jelszó: - - - - Proxy Server (Optional) - Proxy szerver (választható) - - - - License Details - Licenc részletek - - - - Set up the Bible's license details. - Állítsa be a Biblia licenc részleteit. - - - - Version Name: - Verzió neve: - - - - Copyright: - Copyright: - - - - Permission: - Engedély: - - - - Importing - Importálás - - - - Please wait while your Bible is imported. - Kérem, várjon, míg a Biblia importálás alatt áll. - - - - Ready. - Kész. - - - - You need to specify a file to import your Bible from. - Meg kell adni egy fájlt, amelyből a Bibliát importálni lehet. - - - - You need to specify a file with books of the Bible to use in the import. - Meg kell adni egy fájlt a bibliai könyvekről az importáláshoz. - - - - You need to specify a file of Bible verses to import. - Meg kell adni egy fájlt a bibliai versekről az importáláshoz. - - - - You need to specify an OpenSong Bible file to import. - Meg kell adni egy OpenSong Biblia fájlt az importáláshoz. - - - - You need to specify a version name for your Bible. - Meg kell adni a Biblia verziószámát. - - - - Open OSIS File - OSIS fájl megnyitása - - - - Open Books CSV File - Könyv CSV fájl megnyitása - - - - Open Verses CSV File - Versszak CSV fájl megnyitása - - - - No OpenLyrics Files Selected - Nincsenek kijelölt OpenLyrics fájlok - - - - You need to add at least one OpenLyrics song file to import from. - Meg kell adni legalább egy OpenLyrics dal fájlt az importáláshoz. - - - - No OpenSong Files Selected - Nincsenek kijelölt OpenSong fájlok - - - - You need to add at least one OpenSong song file to import from. - Meg kell adni legalább egy OpenSong dal fájlt az importáláshoz. - - - - No CCLI Files Selected - Nincsenek kijelölt CCLI fájlok - - - - You need to add at least one CCLI file to import from. - Meg kell adni legalább egy CCLI fájlt az importáláshoz. - - - - No CSV File Selected - Nincsenek kijelölt CSV fájlok - - - - You need to specify a CSV file to import from. - Meg kell adni legalább egy CSV fájlt az importáláshoz. + + You must select an item to process. + LanguageManager - + Language Nyelv - + After restart new Language settings will be used. Újraindítás után lépnek érvénybe a nyelvi beállítások. @@ -1974,793 +1737,613 @@ A változások nem érintik a már a szolgálatban lévő igeverseket MainWindow - + The Main Display has been blanked out A fő képernyő el lett sötétítve - + OpenLP Version Updated OpenLP verziófrissítés - + Save Changes to Service? Mentsük a változásokat a szolgálatban? - + OpenLP Main Display Blanked Sötét OpenLP fő képernyő - + OpenLP 2.0 - + English Magyar - - Default Theme: - Alapértelmezett téma: - - - + &File &Fájl - + &Import &Importálás - + &Export &Exportálás - - &Options - &Beállítások - - - + &View &Nézet - + M&ode &Mód - + &Tools &Eszközök - + &Help &Súgó - + Media Manager Médiakezelő - + Service Manager Szolgálatkezelő - + Theme Manager Témakezelő - + &New &Új - + New Service Új szolgálat - - Create a new Service - Új szolgálat létrehozása - - - + Ctrl+N - + &Open &Megnyitás - + Open Service Szolgálat megnyitása - - Open an existing service - Meglévő szolgálat megnyitása - - - + Ctrl+O - + &Save M&entés - + Save Service Szolgálat mentése - - Save the current service to disk - Aktuális szolgálat mentése - - - + Ctrl+S - + Save &As... Mentés má&sként... - + Save Service As Szolgálat mentése másként - - Save the current service under a new name - Az aktuális szolgálat más néven való mentése - - - + F12 - + E&xit &Kilépés - + Quit OpenLP OpenLP bezárása - + Alt+F4 - + &Theme &Téma - + &Language &Nyelv - - Look && &Feel - &Kinézet - - - + &Settings &Beállítások - + &Media Manager &Médiakezelő - + Toggle Media Manager Médiakezelő átváltása - - Toggle the visibility of the Media Manager - A médiakezelő láthatóságának átváltása - - - + F8 - + &Theme Manager &Témakezelő - + Toggle Theme Manager Témakezelő átváltása - - Toggle the visibility of the Theme Manager - A témakezelő láthatóságának átváltása - - - + F10 - + &Service Manager &Szolgálatkezelő - + Toggle Service Manager Szolgálatkezelő átváltása - - Toggle the visibility of the Service Manager - A szolgálatkezelő láthatóságának átváltása - - - + F9 - + &Preview Panel &Előnézet panel - + Toggle Preview Panel Előnézet panel átváltása - - Toggle the visibility of the Preview Panel - Az előnézet panel láthatóságának átváltása - - - + F11 - + &Plugin List &Bővítménylista - + List the Plugins Bővítmények listája - + Alt+F7 - + &User Guide &Felhasználói kézikönyv - + &About &Névjegy - + More information about OpenLP Több információ az OpenLP-ről - + Ctrl+F1 - + &Online Help &Online súgó - + &Web Site &Weboldal - + &Auto Detect &Automatikus felismerés - - Choose System language, if available - Ha elérhető, a rendszernyelv választása - - - - Set the interface language to %1 - A felhasználói felület nyelvének átváltása erre: %1 - - - + Add &Tool... &Eszköz hozzáadása... - - Add an application to the list of tools - Egy alkalmazás hozzáadása az eszközök listához - - - - &Preview Pane - &Előnézet panel - - - + &Live &Egyenes adás - - Version %s of OpenLP is now available for download (you are currently running version %s). - -You can download the latest version from http://openlp.org - Már letölthető az OpenLP %s verziója (jelenleg a %s verzió fut). - -A legfrissebb verzió a http://openlp.org oldalról szerezhető be + + Create a new service. + - - Your service has changed. Do you want to save those changes? - A szolgálat módosult. Szeretné elmenteni? + + Open an existing service. + + + + + Save the current service to disk. + + + + + Save the current service under a new name. + + + + + Ctrl+Shift+S + + + + + &Configure OpenLP... + + + + + Toggle the visibility of the media manager. + + + + + Toggle the visibility of the theme manager. + + + + + Toggle the visibility of the service manager. + + + + + Toggle the visibility of the preview panel. + + + + + &Live Panel + + + + + Toggle Live Panel + + + + + Toggle the visibility of the live panel. + + + + + Use the system language, if available. + + + + + Set the interface language to %s + + + + + Add an application to the list of tools. + + + + + &Default + + + + + Set the view mode back to the default. + + + + + &Setup + + + + + Set the view mode to Setup. + + + + + Set the view mode to Live. + + + + + Version %s of OpenLP is now available for download (you are currently running version %s). + +You can download the latest version from http://openlp.org + + + + + Your service has changed. Do you want to save those changes? + + + + + Default Theme: %s + MediaManagerItem - - &Preview - &Előnézet - - - + You must select one or more items Ki kell választani egy vagy több elemet - - Load a new - Új betöltése - - - + Delete the selected item Kiválasztott elem törlése - - &Edit - &Szerkesztés - - - + &Add to Service &Hozzáadás a szolgálathoz - + Send the selected item live A kiválasztott elem egyenes adásba küldése - + Add the selected item(s) to the service A kiválasztott elem(ek) hozzáadása a szolgálathoz - - Edit the selected - Kiválasztott elem szerkesztése - - - - Add a new - Új hozzáadása - - - + &Show Live Egyenes &adásba - + Preview the selected item A kiválasztott elem előnézete - - Import a - Hát ez mi? - Importálás - - - - &Delete - &Törlés - - - + &Add to selected Service Item &Hozzáadás a kiválasztott szolgálat elemhez - + No Items Selected Nincs kiválasztott elem - + You must select one or more items. Ki kell választani egy vagy több elemet. - + No items selected Nincs kiválasztott elem - + No Service Item Selected Nincs kiválasztott szolgálat elem - + You must select an existing service item to add to. Ki kell választani egy szolgálati elemet, amihez hozzá szeretné adni. - + Invalid Service Item Érvénytelen szolgálat elem - - - MediaMediaItem - - Media - Média + + Import %s + - - Select Media - Média kiválasztása + + Import a %s + - - Videos (%s);;Audio (%s);;All files (*) - Videók (%s);;Hangfájlok (%s);;Minden fájl (*) + + Load %s + - - Replace Live Background - Egyenes adás hátterének cseréje + + Load a new %s + - - No item selected - Nincs kiválasztott elem + + New %s + - - You must select one item - Ki kell választani egy elemet + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Preview %s + + + + + Add %s to Service + + + + + &Edit %s + + + + + &Delete %s + + + + + &Preview %s + + + + + You must select one or more items to preview. + + + + + You must select one or more items to send live. + + + + + You must select a %s service item. + MediaPlugin - + <b>Media Plugin</b><br>This plugin allows the playing of audio and video media <b>Média bővítmény</b><br />Ez a bővítmény hangok és videók lejátszását teszi lehetővé - OpenLPExportForm + MediaPlugin.MediaItem - - openlp.org Song Exporter - openlp.org dalexportáló + + Media + Média - - Select openlp.org export filename: - Válassza ki az openlp.org exportálási fájlnevet: + + Select Media + Média kiválasztása - - Full Song List - Teljes dallista + + Replace Live Background + - - Song Title - Dal címe - - - - Author - Szerző - - - - Select All - Összes kiválasztása - - - - Lyrics - Dalszöveg - - - - Title - Cím - - - - Song Export List - Dal exportálási lista - - - - Remove Selected - Kiválasztottak eltávolítása - - - - Progress: - Folyamat: - - - - Ready to export - Készen áll az exportálásra - - - - Export - Exportálás - - - - Close - Bezárás + + You must select an item to delete. + - OpenLPImportForm + OpenLP - - openlp.org Song Importer - openlp.org dalimportáló - - - - Select openlp.org songfile to import: - Válassza ki az openlp.org importálandó fájlt: - - - - Import File Song List - Dallista fájl importálása - - - - Song Title - Dal címe - - - - Author - Szerző - - - - Select All - Összes kiválasztása - - - - Lyrics - Dalszöveg - - - - Title - Cím - - - - Song Import List - Dal importálási lista - - - - Remove Selected - Kiválasztottak eltávolítása - - - - Progress: - Folyamat: - - - - Ready to import - Készen áll az importálásra - - - - Import - Importálás - - - - Close - Bezárás - - - - OpenSongBible - - - Importing - Importálás - - - - OpenSongExportForm - - - OpenSong Song Exporter - OpenSong dalexportáló - - - - Select OpenSong song folder: - Válassza ki az OpenSong dalok mappáját: - - - - Full Song List - Teljes dallista - - - - Song Title - Dal címe - - - - Author - Szerző - - - - Select All - Összes kiválasztása - - - - Lyrics - Dalszöveg - - - - Title - Cím - - - - Song Export List - Dal exportálási lista - - - - Remove Selected - Kiválasztottak eltávolítása - - - - Progress: - Folyamat: - - - - Ready to export - Készen áll az exportálásra - - - - Export - Exportálás - - - - Close - Bezárás - - - - OpenSongImportForm - - - OpenSong Song Importer - OpenSong dalimportáló - - - - OpenSong Folder: - OpenSong mappa: - - - - Progress: - Folyamat: - - - - Ready to import - Készen áll az importálásra - - - - Import - Importálás - - - - Close - Bezárás + + Image Files + @@ -2771,77 +2354,54 @@ A legfrissebb verzió a http://openlp.org oldalról szerezhető be Bővítménylista - + Plugin Details Bővítmény részletei - + Version: Verzió: - + TextLabel Szövegcímke - + About: Névjegy: - + Status: Állapot: - + Active Aktív - + Inactive Inaktív - - - PresentationMediaItem - - Presentation - Bemutató + + %s (Inactive) + - - Present using: - Bemutató ezzel: + + %s (Active) + - - A presentation with that filename already exists. - Ilyen fájlnéven már létezik egy bemutató. - - - - File exists - A fájl létezik - - - - Select Presentation(s) - Bemutató(k) kiválasztása - - - - Automatic - Automatikus - - - - Presentations (%s) - Bemutatók (%s) + + %s (Disabled) + @@ -2853,42 +2413,80 @@ A legfrissebb verzió a http://openlp.org oldalról szerezhető be - PresentationTab + PresentationPlugin.MediaItem - - Available Controllers - Elérhető vezérlők + + Presentation + Bemutató - - available - elérhető + + Select Presentation(s) + Bemutató(k) kiválasztása - - Presentations - Bemutatók + + Automatic + Automatikus + + + + Present using: + Bemutató ezzel: + + + + File exists + A fájl létezik + + + + A presentation with that filename already exists. + Ilyen fájlnéven már létezik egy bemutató. + + + + You must select an item to delete. + - RemoteTab + PresentationPlugin.PresentationTab + + + Presentations + Bemutatók + + + + Available Controllers + Elérhető vezérlők + + + + available + elérhető + + + + RemotePlugin + + + <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer via a web browser or other app<br>The Primary use for this would be to send alerts from a creche + <b>Távvezérlő bővítmény</b><br/>Ez a bővítmény egy böngésző vagy más alkalmazás segítségével lehetővé teszi egy másik számítógépen futó OpenLP irányítását.<br/>Az elsődleges felhasználási terület egy programösszeomlás jelentése + + + + RemotePlugin.RemoteTab Remotes - Távvezérlés + Távvezérlés Remotes Receiver Port - Távvezérlést fogadó port - - - - RemotesPlugin - - - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer via a web browser or other app<br>The Primary use for this would be to send alerts from a creche - <b>Távvezérlő bővítmény</b><br/>Ez a bővítmény egy böngésző vagy más alkalmazás segítségével lehetővé teszi egy másik számítógépen futó OpenLP irányítását.<br/>Az elsődleges felhasználási terület egy programösszeomlás jelentése + Távvezérlést fogadó port @@ -2899,17 +2497,17 @@ A legfrissebb verzió a http://openlp.org oldalról szerezhető be Szolgálati elem kezelése - + Up Fel - + Delete Törlés - + Down Le @@ -2917,155 +2515,186 @@ A legfrissebb verzió a http://openlp.org oldalról szerezhető be 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 @@ -3081,572 +2710,1156 @@ A legfrissebb verzió a http://openlp.org oldalról szerezhető be 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 - - Blank Screen - Elsötétített képernyő - - - - Verse - Versszak - - - + Stop continuous loop Folyamatos vetítés leállítása - + s mp - - Theme Screen - Téma képernyő - - - - Hide Screen - Képernyő rejtése - - - - Chorus - Refrén - - - - SongBookForm - - - Error - Hiba - - - - You need to type in a book name! - Meg kell adnia egy könyv nevét! - - - - Edit Book - Könyv szerkesztése - - - - Name: - Név: - - - - Publisher: - Kiadó: - - - - SongMaintenanceForm - - - Are you sure you want to delete the selected book? - A kiválasztott könyv biztosan törölhető? - - - - Error - Hiba - - - - No author selected! - Nincs kiválasztott szerző! - - - - Delete Book - Könyv törlése - - - - No book selected! - Nincs kiválasztott könyv! - - - - Are you sure you want to delete the selected author? - A kiválasztott szerző biztosan törölhető? - - - - Delete Topic - Témakör törlése - - - - Delete Author - Szerző törlése - - - - No topic selected! - Nincs kiválasztott témakör! - - - - Are you sure you want to delete the selected topic? - A kiválasztott témakör biztosan törölhető? - - - - Song Maintenance - Dalok kezelése - - - - Authors - Szerzők - - - - Topics - Témakörök - - - - Books/Hymnals - Énekeskönyvek - - - - Add - Hozzáadás - - - - Edit - Szerkesztés - - - - Delete - Törlés - - - - Couldn't add your author. - A szerzőt nem lehet hozzáadni. - - - - Couldn't add your topic. - A témakört nem lehet hozzáadni. - - - - Couldn't add your book. - A könyvet nem lehet hozzáadni. - - - - Couldn't save your author. - A szerzőt nem lehet menteni. - - - - Couldn't save your topic. - A témakört nem lehet menteni. - - - - Couldn't save your book. - A könyvet nem lehet menteni. - - - - This author can't be deleted, they are currently assigned to at least one song. - Ez a szerző nem törölhető, mivel hozzá van rendelve legalább egy dalhoz. - - - - This topic can't be deleted, it is currently assigned to at least one song. - Ez a témakör nem törölhető, mivel hozzá van rendelve legalább egy dalhoz. - - - - This book can't be deleted, it is currently assigned to at least one song. - Ez a könyv nem törölhető, mivel hozzá van rendelve legalább egy dalhoz. - - - - SongMediaItem - - - CCLI Licence: - CCLI licenc: - - - - Song - Dal - - - - Maintain the lists of authors, topics and books - A szerzők, témakörök, könyvek listájának kezelése - - - - Lyrics - Dalszöveg - - - - Type: - Típus: - - - - Titles - Címek - - - - Clear - Törlés - - - - Search - Keresés - - - - Authors - Szerzők - - - - Search: - Keresés: - - - - Song Maintenance - Dalok kezelése - - - - %s (%s) - - - - - Delete song? - Valóban törölhető a dal? - - - - Delete %d songs? - Valóban törölhetők a dalok: %d? - - - - Delete Confirmation - Törlés megerősítése - - - - 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? - - - - SongUsageDetailForm - - - Output File Location - Kimeneti fájl elérési útvonala + + Hide + SongUsagePlugin - + <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service <b>Dalstatisztika bővítmény</b><br />Ez a bővítmény rögzíti, hogy a dalok mikor lettek vetítve egy élő szolgálat során + + + &Song Usage + Dal&statisztika + + + + &Delete recorded data + Mentett adatok &törlése + + + + Delete song usage to specified date + Dalstatisztika törlése a megadott dátumig + + + + &Extract recorded data + Mentett adatok &kibontása + + + + Generate report on Song Usage + Jelentés készítése a dalstatisztikából + + + + Song Usage Status + Dalstatisztika állapota + + + + Start/Stop live song usage recording + Élő dalstatisztika rögzítésének indítása/leállítása + SongsPlugin - + Open Songs of Fellowship file Songs of Fellowship fájl megnyitása - + Open documents or presentations Dokumentum vagy bemutató megnyitása - + <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. <strong>Dal bővítmény</strong> <br />Ez a a bővítmény dalok kezelését és vetítését teszi lehetővé. + + + &Song + &Dal + + + + Import songs using the import wizard. + Dalok importálása az importálás tündérrel. + + + + Songs of Fellowship (temp menu item) + + + + + Import songs from the VOLS1_2.RTF, sof3words.rtf and sof4words.rtf supplied with the music books + + + + + Generic Document/Presentation Import (temp menu item) + + + + + Import songs from Word/Writer/Powerpoint/Impress + + + + + Import Error + Importálás hiba + + + + Error importing Songs of Fellowship file. +OpenOffice.org must be installed and you must be using an unedited copy of the RTF included with the Songs of Fellowship Music Editions + + - SongsTab + SongsPlugin.AuditDeleteDialog - - Songs Mode - Dalmód + + 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 + + + Author Maintenance + Szerzők kezelése + + + + Display name: + Megjelenített név: + + + + First name: + Keresztnév: + + + + Last name: + Vezetéknév: + + + + Error + Hiba + + + + You need to type in the first name of the author. + Meg kell adni a szerző vezetéknevét. + + + + You need to type in the last name of the author. + Meg kell adni a szerző keresztnevét. + + + + You haven't set a display name for the author, would you like me to combine the first and last names for you? + Nem állította be a megjelenített nevet. Szeretné a vezetéknevet és a keresztnevet összeilleszteni? + + + + SongsPlugin.EditSongForm + + + Song Editor + Dalszerkesztő + + + + &Title: + + + + + Alt&ernate Title: + + + + + &Lyrics: + + + + + &Verse Order: + + + + + &Add + + + + + &Edit + &Szerkesztés + + + + Ed&it All + + + + + &Delete + &Törlés + + + + Title && Lyrics + Cím és dalszöveg + + + + Authors + Szerzők + + + + &Add to Song + &Hozzáadás dalhoz + + + + &Remove + &Eltávolítás + + + + &Manage Authors, Topics, Books + &Szerzők, témakörök, könyvek kezelése + + + + Topic + Témakör + + + + A&dd to Song + &Hozzáadás dalhoz + + + + R&emove + &Eltávolítás + + + + Song Book + Daloskönyv + + + + Authors, Topics && Book + Szerzők, témakörök és könyv + + + + 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 + + + + Save && Preview + Mentés és előnézet + + + + Add Author + + + + + This author does not exist, do you want to add them? + + + + + 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? + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + Versszak szerkesztése + + + + &Verse type: + + + + + &Insert + + + + + SongsPlugin.ImportWizardForm + + + No OpenLyrics Files Selected + Nincsenek kijelölt OpenLyrics fájlok + + + + You need to add at least one OpenLyrics song file to import from. + Meg kell adni legalább egy OpenLyrics dal fájlt az importáláshoz. + + + + No OpenSong Files Selected + Nincsenek kijelölt OpenSong fájlok + + + + You need to add at least one OpenSong song file to import from. + Meg kell adni legalább egy OpenSong dal fájlt az importáláshoz. + + + + No CCLI Files Selected + Nincsenek kijelölt CCLI fájlok + + + + You need to add at least one CCLI file to import from. + Meg kell adni legalább egy CCLI fájlt az importáláshoz. + + + + No CSV File Selected + Nincsenek kijelölt CSV fájlok + + + + You need to specify a CSV file to import from. + Meg kell adni legalább egy CSV fájlt az importáláshoz. + + + + Starting import... + Importálás indítása... + + + + Song Import Wizard + Dalimportáló tündér + + + + Welcome to the Song Import Wizard + Üdvözlet a dalimportáló tündérben + + + + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. + A tündérrel különféle formátumú dalokat lehet importálni. Az alább található Tovább gombra való kattintással indítható a folyamat első lépése a formátum kiválasztásával. + + + + Select Import Source + Válassza ki az importálandó forrást + + + + Select the import format, and where to import from. + Válassza ki a importálandó forrást és a helyet, ahonnan importálja. + + + + Format: + Formátum: + + + + OpenLyrics + + + + + OpenSong + + + + + CCLI + + + + + CSV + + + + + Add Files... + Fájlok hozzáadása... + + + + Remove File(s) + Fájlok törlése + + + + Filename: + Fájlnév: + + + + Browse... + Tallózás... + + + + Importing + Importálás + + + + Please wait while your songs are imported. + Kérem, várjon, míg a dalok importálás alatt állnak. + + + + Ready. + Kész. + + + + %p% + + + + + SongsPlugin.MediaItem + + + Song + Dal + + + + Song Maintenance + Dalok kezelése + + + + Maintain the lists of authors, topics and books + A szerzők, témakörök, könyvek listájának kezelése + + + + Search: + Keresés: + + + + Type: + Típus: + + + + Clear + + + + + Search + Keresés + + + + Titles + Címek + + + + Lyrics + Dalszöveg + + + + Authors + Szerzők + + + + %s (%s) + + + + + You must select an item to edit. + + + + + You must select an item to delete. + + + + + Delete song? + Valóban törölhető a dal? + + + + Delete %d songs? + Valóban törölhetők a dalok: %d? + + + + Delete Confirmation + Törlés megerősítése + + + + CCLI Licence: + CCLI licenc: + + + + SongsPlugin.SongBookForm + + + Edit Book + Könyv szerkesztése + + + + &Name: + + + + + &Publisher: + + + + + Error + Hiba + + + + You need to type in a name for the book. + + + + + SongsPlugin.SongImport + + + copyright + + + + + © + + + + + SongsPlugin.SongMaintenanceForm + + + Song Maintenance + Dalok kezelése + + + + Authors + Szerzők + + + + Topics + Témakörök + + + + Books/Hymnals + Énekeskönyvek + + + + &Add + + + + + &Edit + &Szerkesztés + + + + &Delete + &Törlés + + + + Error + Hiba + + + + Couldn't add your author. + A szerzőt nem lehet hozzáadni. + + + + Couldn't add your topic. + A témakört nem lehet hozzáadni. + + + + Couldn't add your book. + A könyvet nem lehet hozzáadni. + + + + Couldn't save your author. + A szerzőt nem lehet menteni. + + + + Couldn't save your topic. + A témakört nem lehet menteni. + + + + Couldn't save your book. + A könyvet nem lehet menteni. + + + + 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 can't be deleted, they are currently assigned to at least one song. + Ez a szerző nem törölhető, mivel hozzá van rendelve legalább egy dalhoz. + + + + 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 can't be deleted, it is currently assigned to at least one song. + Ez a témakör nem törölhető, mivel hozzá van rendelve legalább egy dalhoz. + + + + 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 can't be deleted, it is currently assigned to at least one song. + Ez a könyv nem törölhető, mivel hozzá van rendelve legalább egy dalhoz. + + + + 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 Songs - Dalok + Dalok - + + Songs Mode + Dalmód + + + Enable search as you type - Gépelés közbeni keresés engedélyezése + Gépelés közbeni keresés engedélyezése - + Display Verses on Live Tool bar - Versszakok megjelenítése az egyenes adás eszközön + Versszakok megjelenítése az egyenes adás eszközön + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + Témakörök kezelése + + + + Topic name: + Témakör neve: + + + + Error + Hiba + + + + You need to type in a topic name! + Meg kell adni egy témakör nevet! + + + + Splashscreen + + + Starting + Indítás + + + + Splash Screen + Indítóképernyő ThemeManager - + Import Theme Téma importálása - - Create a new theme - Új téma létrehozása - - - + Delete Theme Téma törlése - + Error Hiba - - - Make Global - Legyen globális - - - - Delete a theme - Egy téma törlése - - - - Edit a theme - Egy téma szerkesztése - Edit Theme Téma szerkesztése - + Export Theme Téma exportálása - + Theme Exists A téma már létezik - - Delete theme - Téma törlése - - - + Save Theme - (%s) Téma mentése – (%s) - - default - alapértelmezett - - - + Select Theme Import File Importálandó téma fájl kiválasztása - + New Theme Új téma - - Import a theme - Egy téma importálása - - - - Export theme - Téma exportálása - - - - A theme with this name already exists, would you like to overwrite it? - Ilyen néven már létezik egy téma, szeretné felülírni? - - - - Export a theme - Egy téma exportálása - - - + You are unable to delete the default theme. Az alapértelmezett témát nem lehet törölni. - - Theme %s is use in %s plugin - A %s beépülő használja ezt a témát: %s - - - - Theme %s is use by Service Manager - A szolgálatkezelő használja ezt a témát: %s - - - + You have not selected a theme. Nincs kiválasztva egy téma sem. - + File is not a valid theme. Nem érvényes témafájl. + + + Create a new theme. + + + + + Edit a theme. + + + + + Delete a theme. + + + + + Import a theme. + + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Theme (*.*) + + + + + File is not a valid theme. +The content encoding is not UTF-8. + + + + + A theme with this name already exists. Would you like to overwrite it? + + ThemesTab - - Theme level - Téma szint - - - - Global theme - Globális téma - - - - Global level - Globális szint - - - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Minden dalra az adatbázisban tárolt téma alkalmazása. Ha egy dalhoz nincs saját téma beállítva, akkor a szolgálathoz beállított használata. Ha a szolgálathoz sincs téma beállítva, akkor a globális téma alkalmazása. - - Service level - Szolgálati szint - - - + Use the global theme, overriding any themes associated with either the service or the songs. A globális téma alkalmazása, vagyis a szolgálathoz, ill. a dalokhoz beállított témák felülírása. - - Song level - Dal szint - - - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. A szolgálathoz beállított téma alkalmazása, vagyis az egyes dalokhoz megadott témák felülírása. Ha a szolgálathoz nincs téma beállítva, akkor a globális téma alkalmazása. @@ -3655,250 +3868,68 @@ A legfrissebb verzió a http://openlp.org oldalról szerezhető be Themes Témák - - - TopicsForm - - You need to type in a topic name! - Meg kell adni egy témakör nevet! - - - - Error - Hiba - - - - Topic Maintenance - Témakörök kezelése - - - - Topic name: - Témakör neve: - - - - Ui_SongImportWizard - - - Song Import Wizard - Dalimportáló tündér - - - - Welcome to the Song Import Wizard - Üdvözlet a dalimportáló tündérben - - - - This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - A tündérrel különféle formátumú dalokat lehet importálni. Az alább található Tovább gombra való kattintással indítható a folyamat első lépése a formátum kiválasztásával. - - - - Select Import Source - Válassza ki az importálandó forrást - - - - Select the import format, and where to import from. - Válassza ki a importálandó forrást és a helyet, ahonnan importálja. - - - - Format: - Formátum: - - - - OpenLyrics - - - - - OpenSong - - - - - CCLI - - - - - CSV - - - - - Add Files... - Fájlok hozzáadása... - - - - Remove File(s) - Fájlok törlése - - - - Filename: - Fájlnév: - - - - Browse... - Tallózás... - - - - Importing - Importálás - - - - Please wait while your songs are imported. - Kérem, várjon, míg a dalok importálás alatt állnak. - - - - Ready. - Kész. - - - - %p% - - - - - alertsPlugin - - - Show an alert message - Figyelmeztetést jelenít meg - - - - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - <b>Figyelmeztető bővítmény</b><br/>Ez a bővítmény kezeli a vetítőn megjelenő figyelmeztetéseket - - - - &Alert - &Figyelmeztetés - - - - export_menu - - - &Bible - &Biblia - - - - import_menu - - - &Bible - &Biblia - - - - &Song - &Dal - - - - Import songs using the import wizard. - Dalok importálása az importálás tündérrel. - - - - Songs of Fellowship (temp menu item) + + Global Theme - - Import songs from the VOLS1_2.RTF, sof3words.rtf and sof4words.rtf supplied with the music books + + Theme Level - - Generic Document/Presentation Import (temp menu item) + + S&ong Level - - Import songs from Word/Writer/Powerpoint/Impress + + &Service Level + + + + + &Global Level - self.ImportSongMenu + VerseType - - Import Error - Importálás hiba + + Verse + Versszak - - Error importing Songs of Fellowship file. -OpenOffice.org must be installed and you must be using an unedited copy of the RTF included with the Songs of Fellowship Music Editions - - - - - self.splash_screen - - - Starting - Indítás + + Chorus + Refrén - - Splash Screen - Indítóképernyő - - - - tools_menu - - - &Song Usage - Dal&statisztika + + Bridge + Mellékdal - - &Delete recorded data - Mentett adatok &törlése + + Pre-Chorus + Elő-refrén - - Delete song usage to specified date - Dalstatisztika törlése a megadott dátumig + + Intro + Bevezetés - - &Extract recorded data - Mentett adatok &kibontása + + Ending + Befejezés - - Generate report on Song Usage - Jelentés készítése a dalstatisztikából - - - - Song Usage Status - Dalstatisztika állapota - - - - Start/Stop live song usage recording - Élő dalstatisztika rögzítésének indítása/leállítása + + Other + Egyéb diff --git a/resources/i18n/openlp_ko.ts b/resources/i18n/openlp_ko.ts index 34761a603..dc4fe68d8 100644 --- a/resources/i18n/openlp_ko.ts +++ b/resources/i18n/openlp_ko.ts @@ -1,4960 +1,3775 @@ - - - - BibleMediaItem - - - Quick - 즉시 - - - Ui_customEditDialog - - - Delete selected slide - 선택된 슬라이드 삭제 - - - BiblesTab - - - ( and ) - - - - - RemoteTab - - - Remotes - - - - - Ui_EditSongDialog - - - &Remove - - - - - Ui_AmendThemeDialog - - - Shadow Size: - - - - - Ui_OpenSongExportDialog - - - Close - - - - - ThemeManager - - - Import Theme - - - - - Ui_AmendThemeDialog - - - Slide Transition - - - - - SongMaintenanceForm - - - Are you sure you want to delete the selected book? - - - - - ThemesTab - - - Theme level - - - - - BibleMediaItem - - - Bible - 성경 - - - ServiceManager - - - Save Changes to Service? - - - - - SongUsagePlugin - - - &Delete recorded data - - - - - Ui_OpenLPExportDialog - - - Song Title - - - - - Ui_customEditDialog - - - Edit selected slide - - - - - SongMediaItem - - - CCLI Licence: - - - - - Ui_BibleImportWizard - - - Bible Import Wizard - - - - - Ui_customEditDialog - - - Edit All - - - - - SongMaintenanceForm - - - Couldn't save your author. - - - - - Ui_ServiceNoteEdit - - - Service Item Notes - - - - - Ui_customEditDialog - - - Add new slide at bottom - - - - - Clear - - - - - ThemesTab - - - Global theme - - - - - PresentationPlugin - - - <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - - - - - SongUsagePlugin - - - Start/Stop live song usage recording - - - - - MainWindow - - - The Main Display has been blanked out - - - - - Ui_OpenSongExportDialog - - - Lyrics - - - - - Ui_AlertDialog - - - Display - - - - - SongMaintenanceForm - - - This author can't be deleted, they are currently assigned to at least one song. - - - - - Ui_customEditDialog - - - Delete - - - - - Ui_EditVerseDialog - - - Verse - - - - - Ui_OpenSongImportDialog - - - OpenSong Folder: - - - - - ThemeManager - - - Create a new theme - - - - - Ui_MainWindow - - - Open an existing service - - - - - SlideController - - - Move to previous - - - - - SongsPlugin - - - &Song - - - - - Ui_PluginViewDialog - - - Plugin Details - - - - - ImportWizardForm - - - You need to specify a file with books of the Bible to use in the import. - - - - - AlertsTab - - - Edit History: - - - - - Ui_MainWindow - - - &File - - - - - BiblesTab - - - verse per line - - - - - Ui_customEditDialog - - - Theme: - - - - - SongMaintenanceForm - - - Couldn't add your book. - - - - - Error - - - - - Ui_BibleImportWizard - - - Bible: - - - - - ThemeManager - - - Delete Theme - - - - - SplashScreen - - - Splash Screen - - - - - SongMediaItem - - - Song - - - - - Ui_OpenSongExportDialog - - - Song Title - - - - - Ui_AmendThemeDialog - - - Bottom - - - - - Ui_MainWindow - - - List the Plugins - - - - - SongMaintenanceForm - - - No author selected! - - - - - SongUsageDeleteForm - - - Delete Selected Song Usage Events? - - - - - SongUsagePlugin - - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - - - - - Ui_customEditDialog - - - Move slide Up 1 - - - - - SongsPlugin - - - OpenSong - - - - - AlertsManager - - - Alert message created and delayed - - - - - Ui_EditSongDialog - - - Alternative Title: - - - - - ServiceManager - - - Open Service - - - - - BiblesTab - - - Display Style: - - - - - Ui_AmendThemeDialog - - - Image - - - - - EditSongForm - - - You need to enter a song title. - - - - - ThemeManager - - - Error - - - - - Ui_SongUsageDeleteDialog - - - Song Usage Delete - - - - - ImportWizardForm - - - Invalid Bible Location - - - - - BibleMediaItem - - - Book: - - - - - ThemeManager - - - Make Global - - - - - Ui_MainWindow - - - &Service Manager - - - - - Ui_OpenLPImportDialog - - - Author - - - - - Ui_AmendThemeDialog - - - Height: - - - - - ThemeManager - - - Delete a theme - - - - - Ui_BibleImportWizard - - - Crosswalk - - - - - SongBookForm - - - Error - - - - - Ui_AuthorsDialog - - - Last name: - - - - - ThemesTab - - - Use the global theme, overriding any themes associated with either the service or the songs. - - - - - Ui_customEditDialog - - - Title: - - - - - ImportWizardForm - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - - - - - SongMediaItem - - - Maintain the lists of authors, topics and books - - - - - Ui_AlertEditDialog - - - Save - - - - - EditCustomForm - - - You have unsaved data - - - - - Ui_AmendThemeDialog - - - Outline - - - - - BibleMediaItem - - - Text Search - - - - - Ui_BibleImportWizard - - - CSV - - - - - SongUsagePlugin - - - Delete song usage to specified date - - - - - Ui_SongUsageDetailDialog - - - Report Location - - - - - Ui_BibleImportWizard - - - OpenSong - - - - - Ui_MainWindow - - - Open Service - - - - - BibleMediaItem - - - Find: - - - - - ImageMediaItem - - - Select Image(s) - - - - - BibleMediaItem - - - Search Type: - - - - - Ui_MainWindow - - - Media Manager - - - - - Alt+F4 - - - - - MediaManagerItem - - - &Preview - - - - - GeneralTab - - - CCLI Details - - - - - BibleMediaItem - - - Bible not fully loaded - - - - - Ui_MainWindow - - - Toggle the visibility of the Preview Panel - - - - - ImportWizardForm - - - Bible Exists - - - - - Ui_MainWindow - - - &User Guide - - - - - AlertsTab - - - pt - - - - - Ui_AboutDialog - - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - - - Ui_MainWindow - - - Set the interface language to English - - - - - Ui_AmendThemeDialog - - - Main Font - - - - - ImportWizardForm - - - Empty Copyright - - - - - AuthorsForm - - - You need to type in the first name of the author. - - - - - SongsTab - - - Display Verses on Live Tool bar: - - - - - ServiceManager - - - Move to top - - - - - ImageMediaItem - - - Override background - - - - - Ui_SongMaintenanceDialog - - - Edit - - - - - Ui_OpenSongExportDialog - - - Select All - - - - - ThemesTab - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - - - - - PresentationMediaItem - - - Presentation - - - - - Ui_AmendThemeDialog - - - Solid Color - - - - - CustomTab - - - Custom - - - - - Ui_OpenLPImportDialog - - - Ready to import - - - - - MainWindow - - - OpenLP version %s has been updated to version %s - -You can obtain the latest version from http://openlp.org - - - - - Ui_BibleImportWizard - - - File Location: - - - - - SlideController - - - Go to Verse - - - - - SongMaintenanceForm - - - Couldn't add your topic. - - - - - Ui_MainWindow - - - &Import - - - - - Quit OpenLP - - - - - Ui_BibleImportWizard - - - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - - - - - Ui_OpenLPExportDialog - - - Title - - - - - ImportWizardForm - - - Empty Version Name - - - - - Ui_MainWindow - - - &Preview Panel - - - - - SlideController - - - Start continuous loop - - - - - GeneralTab - - - primary - - - - - Ui_EditSongDialog - - - Add a Theme - - - - - Ui_MainWindow - - - &New - - - - - Ui_customEditDialog - - - Credits: - - - - - Ui_EditSongDialog - - - R&emove - - - - - SlideController - - - Live - - - - - Ui_AmendThemeDialog - - - Font Main - - - - - BiblesTab - - - continuous - - - - - ThemeManager - - - File is not a valid theme. - - - - - GeneralTab - - - Application Startup - - - - - Ui_AmendThemeDialog - - - Use Default Location: - - - - - Ui_OpenSongImportDialog - - - Import - - - - - Ui_AmendThemeDialog - - - Other Options - - - - - Ui_EditSongDialog - - - Verse Order: - - - - - Ui_MainWindow - - - Default Theme: - - - - - Toggle Preview Panel - - - - - SongMediaItem - - - Lyrics - - - - - Ui_OpenLPImportDialog - - - Progress: - - - - - Ui_AmendThemeDialog - - - Shadow - - - - - GeneralTab - - - Select monitor for output display: - - - - - Ui_MainWindow - - - &Settings - - - - - EditSongForm - - - Invalid verse entry - values must be Numeric, I,B,C,T,P,E,O - - - - - Ui_AmendThemeDialog - - - Italics - - - - - ServiceManager - - - Create a new service - - - - - Ui_AmendThemeDialog - - - Background: - - - - - MediaManagerItem - - - No Items Selected - - - - - Ui_OpenLPImportDialog - - - openlp.org Song Importer - - - - - Ui_BibleImportWizard - - - Copyright: - - - - - ThemesTab - - - Service level - - - - - BiblesTab - - - [ and ] - - - - - Ui_BibleImportWizard - - - Verse Location: - - - - - AlertEditForm - - - Item selected to Edit - - - - - GeneralTab - - - Application Settings - - - - - ServiceManager - - - Save this service - - - - - ImportWizardForm - - - Open Books CSV file - - - - - GeneralTab - - - SongSelect Username: - - - - - Ui_AmendThemeDialog - - - X Position: - - - - - BibleMediaItem - - - No matching book could be found in this Bible. - - - - - Ui_BibleImportWizard - - - Server: - - - - - Ui_EditVerseDialog - - - Ending - - - - - CustomTab - - - Display Footer: - - - - - ImportWizardForm - - - Invalid OpenSong Bible - - - - - GeneralTab - - - CCLI Number: - - - - - Ui_AmendThemeDialog - - - Center - - - - - ServiceManager - - - Theme: - - - - - AlertEditForm - - - Please save or clear selected item - - - - - Ui_MainWindow - - - &Live - - - - - Ui_AmendThemeDialog - - - <Color2> - - - - - Ui_MainWindow - - - English - - - - - ImageMediaItem - - - You must select one or more items - - - - - Ui_AuthorsDialog - - - First name: - - - - - Ui_OpenLPExportDialog - - - Select openlp.org export filename: - - - - - Ui_BibleImportWizard - - - Permission: - - - - - Ui_OpenSongImportDialog - - - Close - - - - - Ui_SongUsageDetailDialog - - - Song Usage Extraction - - - - - Ui_AmendThemeDialog - - - Opaque - - - - - ImportWizardForm - - - Your Bible import failed. - - - - - SlideController - - - Start playing media - - - - - MediaManagerItem - - - Import a - - - - - Ui_AboutDialog - - - Project Lead - Raoul "superfly" Snyman - -Developers - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Martin "mijiti" Thompson - Jon "Meths" Tibble - -Contributors - Meinert "m2j" Jordan - Christian "crichter" Richter - Maikel Stuivenberg - Carsten "catini" Tingaard - -Testers - Philip "Phill" Ridout - Wesley "wrst" Stout (lead) - -Packagers - Thomas "tabthorpe" Abthorpe (FreeBSD) - Tim "TRB143" Bentley (Fedora) - Michael "cocooncrash" Gorven (Ubuntu) - Matthias "matthub" Hub (Mac OS X) - Raoul "superfly" Snyman (Windows) - - - - - - SongMaintenanceForm - - - This book can't be deleted, it is currently assigned to at least one song. - - - - - Ui_AboutDialog - - - Close - - - - - TopicsForm - - - You need to type in a topic name! - - - - - Ui_OpenSongExportDialog - - - Song Export List - - - - - BibleMediaItem - - - Dual: - - - - - ImageTab - - - sec - - - - - ServiceManager - - - Delete From Service - - - - - GeneralTab - - - Automatically open the last service - - - - - Ui_OpenLPImportDialog - - - Song Import List - - - - - Ui_OpenSongExportDialog - - - Author - - - - - Ui_AmendThemeDialog - - - Outline Color: - - - - - Ui_BibleImportWizard - - - Select Import Source - - - - - Ui_MainWindow - - - F9 - - - - - F8 - - - - - ServiceManager - - - &Change Item Theme - - - - - Ui_SongMaintenanceDialog - - - Topics - - - - - Ui_OpenLPImportDialog - - - Import File Song List - - - - - Ui_customEditDialog - - - Edit Custom Slides - - - - - Ui_BibleImportWizard - - - Set up the Bible's license details. - - - - - Ui_EditVerseDialog - - - Number - - - - - Ui_AmendThemeDialog - - - Alignment - - - - - SongMaintenanceForm - - - Delete Book - - - - - ThemeManager - - - Edit a theme - - - - - Ui_BibleImportWizard - - - BibleGateway - - - - - GeneralTab - - - Preview Next Song from Service Manager - - - - - Ui_EditSongDialog - - - Title && Lyrics - - - - - SongMaintenanceForm - - - No book selected! - - - - - SlideController - - - Move to live - - - - - Ui_EditVerseDialog - - - Other - - - - - Ui_EditSongDialog - - - Theme - - - - - ServiceManager - - - Save Service - - - - - Ui_SongUsageDetailDialog - - - Select Date Range - - - - - Ui_MainWindow - - - Save the current service to disk - - - - - BibleMediaItem - - - Chapter: - - - - - Search - - - - - PresentationTab - - - Available Controllers - - - - - Ui_MainWindow - - - Add &Tool... - - - - - TopicsForm - - - Error - - - - - RemoteTab - - - Remotes Receiver Port - - - - - Ui_MainWindow - - - &View - - - - - Ui_AmendThemeDialog - - - Normal - - - - - Ui_OpenLPExportDialog - - - Close - - - - - Ui_BibleImportWizard - - - Username: - - - - - ThemeManager - - - Edit Theme - - - - - SlideController - - - Preview - - - - - Ui_AlertDialog - - - Alert Message - - - - - ImportWizardForm - - - Finished import. - - - - - GeneralTab - - - Show blank screen warning - - - - - ImportWizardForm - - - You need to specify a file of Bible verses to import. - - - - - AlertsTab - - - Location: - - - - - Ui_EditSongDialog - - - Authors, Topics && Book - - - - - EditSongForm - - - You need to enter some verses. - - - - - Ui_BibleImportWizard - - - Download Options - - - - - BiblePlugin - - - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - - - - - Ui_EditSongDialog - - - Copyright Information - - - - - Ui_MainWindow - - - &Export - - - - - Ui_AmendThemeDialog - - - Bold - - - - - SongsPlugin - - - Export songs in OpenLP 2.0 format - - - - - MediaManagerItem - - - Load a new - - - - - AlertEditForm - - - Missing data - - - - - SongsPlugin - - - <b>Song Plugin</b> <br>This plugin allows Songs to be managed and displayed.<br> - - - - - Ui_AmendThemeDialog - - - Footer Font - - - - - EditSongForm - - - Invalid verse entry - vX - - - - - ServiceManager - - - OpenLP Service Files (*.osz) - - - - - MediaManagerItem - - - Delete the selected item - - - - - Ui_OpenLPExportDialog - - - Export - - - - - Ui_BibleImportWizard - - - Location: - - - - - BibleMediaItem - - - Keep - - - - - SongUsagePlugin - - - Generate report on Song Usage - - - - - Ui_EditSongDialog - - - Topic - - - - - Ui_MainWindow - - - &Open - - - - - AuthorsForm - - - You haven't set a display name for the author, would you like me to combine the first and last names for you? - - - - - AmendThemeForm - - - Slide Height is %s rows - - - - - Ui_EditSongDialog - - - Lyrics: - - - - - Ui_AboutDialog - - - Project Lead - Raoul "superfly" Snyman - -Developers - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Testers - Wesley "wrst" Stout - - - - - SongMediaItem - - - Titles - - - - - Ui_OpenLPExportDialog - - - Lyrics - - - - - PresentationMediaItem - - - Present using: - - - - - SongMediaItem - - - Clear - - - - - ServiceManager - - - &Live Verse - - - - - Ui_OpenSongImportDialog - - - Progress: - - - - - Ui_MainWindow - - - Toggle Theme Manager - - - - - Ui_AlertDialog - - - Alert Text: - - - - - Ui_EditSongDialog - - - Edit - - - - - AlertsTab - - - Font Color: - - - - - BiblesTab - - - Display Dual Bible Verses - - - - - CustomTab - - - Custom Display - - - - - Ui_OpenSongExportDialog - - - Title - - - - - Ui_AmendThemeDialog - - - <Color1> - - - - - Ui_EditSongDialog - - - Authors - - - - - ThemeManager - - - Export Theme - - - - - ImageMediaItem - - - No items selected... - - - - - Ui_SongBookDialog - - - Name: - - - - - Ui_AuthorsDialog - - - Author Maintenance - - - - - Ui_AmendThemeDialog - - - Font Footer - - - - - BiblesTab - - - Verse Display - - - - - Ui_MainWindow - - - &Options - - - - - BibleMediaItem - - - Results: - - - - - Ui_OpenLPExportDialog - - - Full Song List - - - - - ServiceManager - - - Move to &top - - - - - SlideController - - - Move to last - - - - - Ui_OpenLPExportDialog - - - Progress: - - - - - Ui_SongMaintenanceDialog - - - Add - - - - - SongMaintenanceForm - - - Are you sure you want to delete the selected author? - - - - - SongUsagePlugin - - - Song Usage Status - - - - - BibleMediaItem - - - Verse Search - - - - + + + AboutForm - - build - - - - - Ui_SongBookDialog - - - Edit Book - - - - - EditSongForm - - - Save && Preview - - - - - Ui_SongBookDialog - - - Publisher: - - - - - Ui_AmendThemeDialog - - - Font Weight: - - - - - Ui_BibleImportWizard - - - Bible Filename: - - - - - Ui_AmendThemeDialog - - - Transparent - - - - - SongMediaItem - - - Search - - - - - Ui_BibleImportWizard - - - Format: - - - - - Ui_AmendThemeDialog - - - Background - - - - - Ui_BibleImportWizard - - - Importing - - - - - Ui_customEditDialog - - - Edit all slides - - - - - SongsTab - - - Enable search as you type: - - - - - Ui_MainWindow - - - Ctrl+S - - - - - SongMediaItem - - - Authors - - - - - Ui_PluginViewDialog - - - Active - - - - - SongMaintenanceForm - - - Couldn't add your author. - - - - - Ui_MainWindow - - - Ctrl+O - + + About OpenLP + - - Ctrl+N - - - - - Ui_AlertEditDialog - - - Edit - - - - - Ui_EditSongDialog - - - Song Editor - - - - - AlertsTab - - - Font - - - - - SlideController - - - Edit and re-preview Song - - - - - Delay between slides in seconds - - - - - MediaManagerItem - - - &Edit - - - - - Ui_AmendThemeDialog - - - Vertical - - - - - Width: - - - - - ThemesTab - - - Global level - - - - - ThemeManager - - - You are unable to delete the default theme. - - - - - BibleMediaItem - - - Version: - - - - - Ui_AboutDialog - - - OpenLP <version> build <revision> - Open Source Lyrics Projection + + OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - - - SongsPlugin - - - OpenLP 2.0 - - - - - ServiceManager - - - New Service - - - - - Ui_TopicsDialog - - - Topic name: - - - - - Ui_BibleImportWizard - - - License Details - - - - - Ui_AboutDialog - - - License - - - - - OpenSongBible - - - Importing - - - - - Ui_AmendThemeDialog - - - Middle - - - - - Ui_customEditDialog - - - Save - - - - - BibleMediaItem - - - From: - - - - - MediaManagerItem - - - You must select one or more items - - - - - Ui_AmendThemeDialog - - - Shadow Color: - - - - - ServiceManager - - - &Notes - - - - - Ui_MainWindow - - - E&xit - - - - - Ui_OpenLPImportDialog - - - Close - - - - - MainWindow - - - OpenLP Version Updated - - - - - Ui_customEditDialog - - - Replace edited slide - - - - - EditCustomForm - - - You need to enter a title - - - - - ThemeManager - - - Theme Exists - - - - - Ui_MainWindow - - - &Help - - - - - Ui_EditVerseDialog - - - Bridge - - - - - Ui_OpenSongExportDialog - - - OpenSong Song Exporter - - - - - Ui_AmendThemeDialog - - - Vertical Align: - - - - - Ui_EditVerseDialog - - - Pre-Chorus - - - - - Ui_AmendThemeDialog - - - Top - + - - Theme Maintenance - + + About + - - - MainWindow - - Version %s of OpenLP is now available for download (you are currently running version %s). + + Project Lead + Raoul "superfly" Snyman -You can download the latest version from http://openlp.org - +Developers + Tim "TRB143" Bentley + Jonathan "gushie" Corwin + Michael "cocooncrash" Gorven + Scott "sguerrieri" Guerrieri + Raoul "superfly" Snyman + Martin "mijiti" Thompson + Jon "Meths" Tibble + +Contributors + Meinert "m2j" Jordan + Christian "crichter" Richter + Maikel Stuivenberg + Carsten "catini" Tingaard + +Testers + Philip "Phill" Ridout + Wesley "wrst" Stout (lead) + +Packagers + Thomas "tabthorpe" Abthorpe (FreeBSD) + Tim "TRB143" Bentley (Fedora) + Michael "cocooncrash" Gorven (Ubuntu) + Matthias "matthub" Hub (Mac OS X) + Raoul "superfly" Snyman (Windows) + + - - - Ui_MainWindow - - Toggle Service Manager - + + Credits + - - - Ui_EditSongDialog - - Delete - + + Copyright © 2004-2010 Raoul Snyman +Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard + +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. + + +GNU GENERAL PUBLIC LICENSE +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification follow. + +GNU GENERAL PUBLIC LICENSE +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: + +a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. + +b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. + +c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. + +3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: + +a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. + +This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version', you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. + +<one line to give the program's name and a brief idea of what it does.> +Copyright (C) <year> <name of author> + +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it starts in an interactive mode: + +Gnomovision version 69, Copyright (C) year name of author +Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type "show w". +This is free software, and you are welcome to redistribute it under certain conditions; type "show c" for details. + +The hypothetical commands "show w" and "show c" should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than "show w" and "show c"; they could even be mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: + +Yoyodyne, Inc., hereby disclaims all copyright interest in the program "Gnomovision" (which makes passes at compilers) written by James Hacker. + +<signature of Ty Coon>, 1 April 1989 +Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. + - - - MediaManagerItem - - &Add to Service - + + License + - - + + + Contribute + + + + + Close + + + + + build %s + + + + + AlertsPlugin + + + &Alert + + + + + <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen + + + + + Show an alert message. + + + + + AlertsPlugin.AlertForm + + + Alert Message + + + + + Alert &text: + + + + + &Parameter(s): + + + + + &New + + + + + &Save + + + + + &Delete + + + + + Displ&ay + + + + + Display && Cl&ose + + + + + &Close + + + + + New Alert + + + + + You haven't specified any text for your alert. Please type in some text before clicking New. + + + + + AlertsPlugin.AlertsManager + + + Alert message created and displayed. + + + + + AlertsPlugin.AlertsTab + + + Alerts + + + + + Font + + + + + Font Name: + + + + + Font Color: + + + + + Background Color: + + + + + Font Size: + + + + + pt + + + + + Alert timeout: + + + + + s + + + + + Location: + + + + + Preview + + + + + openlp.org + + + + + Top + + + + + Middle + + + + + Bottom + + + + AmendThemeForm - - First Color: - - - - - ThemesTab - - - Song level - - - - - alertsPlugin - - - Show an alert message - - - - - Ui_MainWindow - - - Ctrl+F1 - - - - - SongMaintenanceForm - - - Couldn't save your topic. - - - - - Ui_MainWindow - - - Save the current service under a new name - - - - - Ui_OpenLPExportDialog - - - Remove Selected - - - - - ThemeManager - - - Delete theme - - - - - ImageTab - - - Image Settings - - - - - Ui_OpenSongImportDialog - - - OpenSong Song Importer - - - - - SongUsagePlugin - - - &Extract recorded data - - - - - ImportWizardForm - - - Open Books CSV File - - - - - AlertsTab - - - Font Name: - - - - - Ui_MainWindow - - - &Web Site - - - - - MediaManagerItem - - - Send the selected item live - - - - - Ui_MainWindow - - - M&ode - + + Theme Maintenance + - - Translate the interface to your language - + + &Visibility: + - - Service Manager - - - - - CustomMediaItem - - - Custom - - - - - Ui_BibleImportWizard - - - OSIS - - - - - SongsPlugin - - - openlp.org 1.0 - - - - - Ui_MainWindow - - - &Theme - - - - - Ui_EditVerseDialog - - - Edit Verse - - - - - Ui_MainWindow - - - &Language - - - - - ServiceManager - - - Move to end - + + Opaque + - - Your service is unsaved, do you want to save those changes before creating a new one ? - - - - - Ui_OpenSongExportDialog - - - Remove Selected - - - - - SongMediaItem - - - Search: - - - - - MainWindow - - - Save Changes to Service? - + + Transparent + - - Your service has changed, do you want to save those changes? - + + Type: + - - - ServiceManager - - &Delete From Service - + + Solid Color + - - - Ui_EditSongDialog - - &Add to Song - + + Gradient + - - - Ui_MainWindow - - &About - + + Image + - - - ImportWizardForm - - You need to specify a version name for your Bible. - + + Image: + - - - BiblesTab - - Only show new chapter numbers - + + Gradient: + - - - Ui_AlertEditDialog - - Delete - + + Horizontal + - - - EditCustomForm - - Error - + + Vertical + - - - ThemesTab - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - + + Circular + - - - AlertEditForm - - Item selected to Add - + + &Background + - - - Ui_AmendThemeDialog - - Right - + + Main Font + - - - ThemeManager - - Save Theme - (%s) - + + Font: + - - - MediaManagerItem - - Add the selected item(s) to the service - + + Color: + - - - AuthorsForm - - Error - + + Size: + - - - Ui_AmendThemeDialog - - Font Color: - + + pt + - - - Ui_OpenLPImportDialog - - Select openlp.org songfile to import: - + + Wrap indentation: + - - - Ui_SettingsDialog - - Settings - + + Adjust line spacing: + - - - BiblesTab - - Layout Style: - + + Normal + - - - MediaManagerItem - - Edit the selected - + + Bold + - - - SlideController - - Move to next - + + Italics + - - - Ui_MainWindow - - &Plugin List - + + Bold/Italics + - - + + + Style: + + + + + Display Location + + + + + X position: + + + + + Y position: + + + + + Width: + + + + + Height: + + + + + px + + + + + &Main Font + + + + + Footer Font + + + + + &Footer Font + + + + + Outline + + + + + Outline size: + + + + + Outline color: + + + + + Show outline: + + + + + Shadow + + + + + Shadow size: + + + + + Shadow color: + + + + + Show shadow: + + + + + Alignment + + + + + Horizontal align: + + + + + Left + + + + + Right + + + + + Center + + + + + Vertical align: + + + + + Top + + + + + Middle + + + + + Bottom + + + + + Slide Transition + + + + + &Other Options + + + + + Preview + + + + + All Files + + + + + Select Image + + + + + First color: + + + + + Second color: + + + + + Slide height is %s rows. + + + + + Theme &name: + + + + + Use default location + + + + + Transition active + + + + + BibleDB + + + Book not found + + + + BiblePlugin - - &Bible - - - - - Ui_BibleImportWizard - - - Web Download - - - - - Ui_AmendThemeDialog - - - Horizontal - - - - - ImportWizardForm - - - Open OSIS file - - - - - Ui_AmendThemeDialog - - - Circular - - - - - PresentationMediaItem - - - Automatic - - - - - SongMaintenanceForm - - - Couldn't save your book. - - - - - Ui_AmendThemeDialog - - - pt - - - - - SongMaintenanceForm - - - Delete Topic - - - - - Ui_OpenLPImportDialog - - - Lyrics - - - - - BiblesTab - - - No brackets - - - - - Ui_AlertEditDialog - - - Maintain Alerts - - - - - Ui_AmendThemeDialog - - - px - - - - - ServiceManager - - - Select a theme for the service - - - - - ThemesTab - - - Themes - - - - - Ui_PluginViewDialog - - - Status: - - - - - Ui_EditSongDialog - - - CCLI Number: - - - - - ImportWizardForm - - - This Bible already exists! Please import a different Bible or first delete the existing one. - - - - - Ui_MainWindow - - - &Translate - - - - - BiblesTab - - - Bibles - - - - - Ui_SongMaintenanceDialog - - - Authors - - - - - SongUsageDetailForm - - - Output File Location - - - - - BiblesTab - - - { and } - - - - - GeneralTab - - - Prompt to save Service before starting New - - - - - ImportWizardForm - - - Starting import... - - - - - BiblesTab - - - Note: -Changes don't affect verses already in the service - - - - - Ui_EditVerseDialog - - - Intro - - - - - ServiceManager - - - Move up order - - - - - PresentationTab - - - available - - - - - ThemeManager - - - default - - - - - SongMaintenanceForm - - - Delete Author - - - - - Ui_AmendThemeDialog - - - Display Location - - - - - Ui_PluginViewDialog - - - Version: - - - - - Ui_AlertEditDialog - - - Add - - - - - GeneralTab - - - General - - - - - Ui_AmendThemeDialog - - - Y Position: - - - - - ServiceManager - - - Move down order - - - - - BiblesTab - - - verse per slide - - - - - Ui_AmendThemeDialog - - - Show Shadow: - - - - - AlertsTab - - - Preview - - - - - alertsPlugin - - - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - - - - - GeneralTab - - - Show the splash screen - - - - - Ui_MainWindow - - - New Service - - - - - SlideController - - - Move to first - - - - - Ui_MainWindow - - - &Online Help - - - - - SlideController - - - Blank Screen - - - - - Ui_MainWindow - - - Save Service - + + <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. + - - Save &As... - + + &Bible + + + + + BiblesPlugin,BiblesTab + + + Bibles + + + + + BiblesPlugin.BiblesTab + + + Verse Display + - - Toggle the visibility of the Media Manager - - - - - BibleMediaItem - - - No Book Found - - - - - Ui_EditSongDialog - - - Add - - - - - alertsPlugin - - - &Alert - - - - - BibleMediaItem - - - Advanced - - - - - ImageMediaItem - - - Image(s) - - - - - Ui_MainWindow - - - F11 - + + Only show new chapter numbers + - - F10 - + + Layout style: + - - F12 - + + Display style: + - - + + + Bible theme: + + + + + Verse Per Slide + + + + + Verse Per Line + + + + + Continuous + + + + + No Brackets + + + + + ( And ) + + + + + { And } + + + + + [ And ] + + + + + Note: +Changes do not affect verses already in the service. + + + + + Display dual Bible verses + + + + + BiblesPlugin.ImportWizardForm + + + Bible Import Wizard + + + + + Welcome to the Bible Import Wizard + + + + + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + + + + + Select Import Source + + + + + Select the import format, and where to import from. + + + + + Format: + + + + + OSIS + + + + + CSV + + + + + OpenSong + + + + + Web Download + + + + + File location: + + + + + Books location: + + + + + Verse location: + + + + + Bible filename: + + + + + Location: + + + + + Crosswalk + + + + + BibleGateway + + + + + Bible: + + + + + Download Options + + + + + Server: + + + + + Username: + + + + + Password: + + + + + Proxy Server (Optional) + + + + + License Details + + + + + Set up the Bible's license details. + + + + + Version name: + + + + + Copyright: + + + + + Permission: + + + + + Importing + + + + + Please wait while your Bible is imported. + + + + + Ready. + + + + + Invalid Bible Location + + + + + You need to specify a file to import your Bible from. + + + + + Invalid Books File + + + + + You need to specify a file with books of the Bible to use in the import. + + + + + Invalid Verse File + + + + + You need to specify a file of Bible verses to import. + + + + + Invalid OpenSong Bible + + + + + You need to specify an OpenSong Bible file to import. + + + + + Empty Version Name + + + + + You need to specify a version name for your Bible. + + + + + Empty Copyright + + + + + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + + + + + Bible Exists + + + + + This Bible already exists! Please import a different Bible or first delete the existing one. + + + + + Open OSIS File + + + + + Open Books CSV File + + + + + Open Verses CSV File + + + + + Open OpenSong Bible + + + + + Starting import... + + + + + Finished import. + + + + + Your Bible import failed. + + + + + BiblesPlugin.MediaItem + + + Bible + 성경 + + + + Quick + 즉시 + + + + Advanced + + + + + Version: + + + + + Dual: + + + + + Search type: + + + + + Find: + + + + + Search + + + + + Results: + + + + + Book: + + + + + Chapter: + + + + + Verse: + + + + + From: + + + + + To: + + + + + Verse Search + + + + + Text Search + + + + + Clear + + + + + Keep + + + + + No Book Found + + + + + No matching book could be found in this Bible. + + + + + etc + + + + + Bible not fully loaded. + + + + + BiblesPlugin.Opensong + + + Importing + + + + CustomPlugin - - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> - + + <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> + - - - Ui_MainWindow + + + CustomPlugin.CustomTab - - Alt+F7 - + + Custom + - - Add an application to the list of tools - + + Custom Display + - - - MediaPlugin - - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - + + Display footer + - - - ServiceManager + + + CustomPlugin.EditCustomForm - - Move &down - + + Edit Custom Slides + - - - BiblesTab - - Bible Theme: - + + Move slide up once position. + - - - SongMediaItem - - Type: - + + Move slide down one position. + - - - SongsPlugin - - Export songs in openlp.org 1.0 format - + + &Title: + - - - Ui_MainWindow - - Theme Manager - + + Add New + - - - AlertsTab - - Alerts - + + Add a new slide at bottom. + - - - Ui_customEditDialog - - Move slide down 1 - + + Edit + - - - Ui_AmendThemeDialog - - Font: - + + Edit the selected slide. + - - - ServiceManager - - Load an existing service - + + Edit All + - - - Ui_MainWindow - - Toggle the visibility of the Theme Manager - + + Edit all the slides at once. + - - - PresentationTab - - Presentations - + + Save + - - - SplashScreen - - Starting - + + Save the slide currently being edited. + - - - ImageTab - - Slide Loop Delay: - + + Delete + - - - SlideController - - Verse - + + Delete the selected slide. + - - - AlertsTab - - Alert timeout: - + + Clear + - - - Ui_MainWindow - - &Preview Pane - + + Clear edit area + - - - MediaManagerItem - - Add a new - + + Split Slide + - - - ThemeManager - - Select Theme Import File - + + Split a slide into two by inserting a slide splitter. + - - New Theme - + + The&me: + - - - MediaMediaItem - - Media - + + &Credits: + - - - Ui_AmendThemeDialog - - Preview - + + Save && Preview + - - Outline Size: - + + Error + - - - Ui_OpenSongExportDialog - - Progress: - + + You need to type in a title. + - - - AmendThemeForm - - Second Color: - + + You need to add at least one slide + - - - Ui_EditSongDialog - - Theme, Copyright Info && Comments - + + You have one or more unsaved slides, please either save your slide(s) or clear your changes. + - - - Ui_AboutDialog + + + CustomPlugin.MediaItem - - Credits - + + Custom + - - - BibleMediaItem - - To: - + + You haven't selected an item to edit. + - - - Ui_EditSongDialog - - Song Book - + + You haven't selected an item to delete. + - - - Ui_OpenLPExportDialog + + + DisplayTab - - Author - + + Displays + - - - Ui_AmendThemeDialog - - Wrap Indentation - + + Default Settings + - - - ThemeManager - - Import a theme - + + X: + - - - ImageMediaItem - - Image - + + Y: + - - - BibleMediaItem - - Clear - + + Height: + - - - Ui_MainWindow - - Save Service As - + + Width: + - - - Ui_AlertDialog - - Cancel - + + Custom Settings + - - - Ui_OpenLPImportDialog - - Import - + + Width + - - - Ui_EditVerseDialog - - Chorus - + + Override display settings + - - - Ui_EditSongDialog - - - Edit All - - - - - AuthorsForm - - - You need to type in the last name of the author. - - - - - SongsTab - - - Songs Mode - - - - - Ui_AmendThemeDialog - - - Left - - - - - RemotesPlugin - - - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer.<br>The Primary use for this would be to send alerts from a creche - - - - - ImageTab - - - Images - - - - - BibleMediaItem - - - Verse: - - - - - Ui_OpenLPExportDialog - - - openlp.org Song Exporter - - - - - Song Export List - - - - - ThemeManager - - - Export theme - - - - - Ui_SongMaintenanceDialog - - - Delete - - - - - Ui_AmendThemeDialog - - - Theme Name: - - - - - Ui_AboutDialog - - - About OpenLP - - - - - Ui_MainWindow - - - Toggle the visibility of the Service Manager - - - - - PresentationMediaItem - - - A presentation with that filename already exists. - - - - - ImageMediaItem - - - Allow the background of live slide to be overridden - - - - - SongUsageDeleteForm - - - Are you sure you want to delete selected Song Usage data? - - - - - AlertsTab - - - openlp.org - - - - - ImportWizardForm - - - Invalid Books File - - - - - Ui_OpenLPImportDialog - - - Song Title - - - - - MediaManagerItem - - - &Show Live - - - - - AlertsTab - - - Keep History: - - - - - Ui_AmendThemeDialog - - - Image: - - - - - ImportWizardForm - - - Open Verses CSV file - - - - - Ui_customEditDialog - - - Set Theme for Slides - - - - - Ui_MainWindow - - - More information about OpenLP - - - - - AlertsTab - - - Background Color: - - - - - SongMaintenanceForm - - - No topic selected! - - - - - Ui_MainWindow - - - &Media Manager - - - - - &Tools - - - - - AmendThemeForm - - - Background Color: - - - - - Ui_EditSongDialog - - - A&dd to Song - - - - - Title: - - - - + + GeneralTab - - Screen - - - - - SongMaintenanceForm - - - This topic can't be deleted, it is currently assigned to at least one song. - - - - - AlertsTab - - - s - - - - - Ui_AlertEditDialog - - - Clear - - - - - Ui_BibleImportWizard - - - Please wait while your Bible is imported. - - - - - MediaManagerItem - - - No items selected... - - - - - Ui_OpenLPImportDialog - - - Select All - - - - - Ui_BibleImportWizard - - - Select the import format, and where to import from. - - - - - Ui_OpenLPImportDialog - - - Title - - - - - Ui_OpenSongExportDialog - - - Select OpenSong song folder: - - - - - Ui_MainWindow - - - Toggle Media Manager - - - - - SongUsagePlugin - - - &Song Usage - - - - - GeneralTab - - - Monitors - - - - - EditCustomForm - - - You need to enter a slide - - - - - ThemeManager - - - You have not selected a theme. - - - - - Ui_EditVerseDialog - - - Verse Type - - - - - ImportWizardForm - - - You need to specify a file to import your Bible from. - - - - - Ui_EditSongDialog - - - Comments - - - - - AlertsTab - - - Bottom - - - - - Ui_MainWindow - - - Create a new Service - - - - - AlertsTab - - - Top - - - - - ServiceManager - - - &Preview Verse - - - - - Ui_PluginViewDialog - - - TextLabel - - - - - AlertsTab - - - Font Size: - - - - - Ui_PluginViewDialog - - - About: - + + CCLI Details + - - Inactive - - - - - Ui_OpenSongExportDialog - - - Ready to export - + + primary + - - Export - - - - - Ui_PluginViewDialog - - - Plugin List - - - - - Ui_AmendThemeDialog - - - Transition Active: - - - - - Ui_BibleImportWizard - - - Proxy Server (Optional) - - - - - Ui_EditSongDialog - - - &Manage Authors, Topics, Books - - - - - Ui_OpenLPExportDialog - - - Ready to export - - - - - ImageMediaItem - - - Images (*.jpg *.jpeg *.gif *.png *.bmp);; All files (*) - - - - - EditCustomForm - - - Save && Preview - - - - - Ui_OpenLPExportDialog - - - Select All - - - - - Ui_SongUsageDetailDialog - - - to - - - - - Ui_AmendThemeDialog - - - Size: - - - - - MainWindow - - - OpenLP Main Display Blanked - - - - - Ui_OpenLPImportDialog - - - Remove Selected - - - - - ServiceManager - - - Move &up - - - - - ImportWizardForm - - - You need to specify an OpenSong Bible file to import. - - - - - Ui_BibleImportWizard - - - Ready. - - - - - PresentationMediaItem - - - File exists - - - - - Ui_OpenSongImportDialog - - - Ready to import - - - - - SlideController - - - Stop continuous loop - + + Application Startup + - - s - + + Select monitor for output display: + - - + + + Application Settings + + + + + SongSelect Username: + + + + + CCLI Number: + + + + + Automatically open the last service + + + + + Preview Next Song from Service Manager + + + + + Show blank screen warning + + + + + Prompt to save Service before starting New + + + + + General + + + + + Show the splash screen + + + + + Screen + + + + + Monitors + + + + + SongSelect Password: + + + + + Display if a single screen + + + + ImagePlugin - - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> - + + <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> + - - - SongMediaItem + + + ImagePlugin.ImageTab - - Song Maintenance - - - - - Ui_customEditDialog - - - Edit - - - - - Ui_AmendThemeDialog - - - Gradient : - - - - - ImportWizardForm - - - Invalid Verse File - - - - - EditSongForm - - - Error - - - - - Ui_customEditDialog - - - Add New - - - - - Ui_AuthorsDialog - - - Display name: - - - - - SongMaintenanceForm - - - Are you sure you want to delete the selected topic? - - - - - Ui_AmendThemeDialog - - - Bold/Italics - - - - - Ui_SongMaintenanceDialog - - - Song Maintenance - - - - - ImportWizardForm - - - Open Verses CSV File - + + Images + - - Open OSIS File - - - - - Ui_BibleImportWizard - - - Welcome to the Bible Import Wizard - - - - - SongsTab - - - Songs - - - - - Ui_BibleImportWizard - - - Password: - - - - - Ui_MainWindow - - - &Theme Manager - - - - - MediaManagerItem - - - Preview the selected item - - - - - Ui_BibleImportWizard - - - Version Name: - - - - - Ui_AboutDialog - - - About - - - - - MediaMediaItem - - - Select Media - - - - - Ui_AmendThemeDialog - - - Horizontal Align: - - - - - ServiceManager - - - &Edit Item - - - - - Ui_AmendThemeDialog - - - Background Type: - - - - - Ui_MainWindow - - - &Save - + + Image Settings + - - OpenLP 2.0 - - - - - ThemeManager - - - A theme with this name already exists, would you like to overwrite it? - - - - - PresentationMediaItem - - - Select Presentation(s) - - - - - ThemeManager - - - Export a theme - - - - - AmendThemeForm - - - Open file - - - - - Ui_TopicsDialog - - - Topic Maintenance - - - - - Ui_customEditDialog - - - Clear edit area - - - - - Ui_AmendThemeDialog - - - Show Outline: - + + Slide Loop Delay: + - - Gradient - + + sec + - - - SongBookForm + + + ImagePlugin.MediaItem - - You need to type in a book name! - + + Image + - - - ImportWizardForm - - Open OpenSong Bible - + + Select Image(s) + - - - Ui_MainWindow - - Look && &Feel - + + All Files + - - - MediaManagerItem - - You must select one or more items. - + + Replace Live Background + - - - Ui_SongMaintenanceDialog - - Books/Hymnals - + + You must select an item to delete. + - - - Ui_AboutDialog - - Contribute - + + Image(s) + - - - ServiceManager - - Move to &bottom - + + You must select an item to process. + - - - Ui_BibleImportWizard + + + LanguageManager - - Books Location: - + + Language + - - - Ui_OpenSongExportDialog - - Full Song List - + + After restart new Language settings will be used. + - - - GeneralTab + + + MainWindow - - SongSelect Password: - + + The Main Display has been blanked out + - + + + OpenLP Version Updated + + + + + Save Changes to Service? + + + + + OpenLP Main Display Blanked + + + + + OpenLP 2.0 + + + + + English + + + + + &File + + + + + &Import + + + + + &Export + + + + + &View + + + + + M&ode + + + + + &Tools + + + + + &Settings + + + + + &Language + + + + + &Help + + + + + Media Manager + + + + + Service Manager + + + + + Theme Manager + + + + + &New + + + + + New Service + + + + + Create a new service. + + + + + Ctrl+N + + + + + &Open + + + + + Open Service + + + + + Open an existing service. + + + + + Ctrl+O + + + + + &Save + + + + + Save Service + + + + + Save the current service to disk. + + + + + Ctrl+S + + + + + Save &As... + + + + + Save Service As + + + + + Save the current service under a new name. + + + + + Ctrl+Shift+S + + + + + E&xit + + + + + Quit OpenLP + + + + + Alt+F4 + + + + + &Theme + + + + + &Configure OpenLP... + + + + + &Media Manager + + + + + Toggle Media Manager + + + + + Toggle the visibility of the media manager. + + + + + F8 + + + + + &Theme Manager + + + + + Toggle Theme Manager + + + + + Toggle the visibility of the theme manager. + + + + + F10 + + + + + &Service Manager + + + + + Toggle Service Manager + + + + + Toggle the visibility of the service manager. + + + + + F9 + + + + + &Preview Panel + + + + + Toggle Preview Panel + + + + + Toggle the visibility of the preview panel. + + + + + F11 + + + + + &Live Panel + + + + + Toggle Live Panel + + + + + Toggle the visibility of the live panel. + + + + + F12 + + + + + &Plugin List + + + + + List the Plugins + + + + + Alt+F7 + + + + + &User Guide + + + + + &About + + + + + More information about OpenLP + + + + + Ctrl+F1 + + + + + &Online Help + + + + + &Web Site + + + + + &Auto Detect + + + + + Use the system language, if available. + + + + + Set the interface language to %s + + + + + Add &Tool... + + + + + Add an application to the list of tools. + + + + + &Default + + + + + Set the view mode back to the default. + + + + + &Setup + + + + + Set the view mode to Setup. + + + + + &Live + + + + + Set the view mode to Live. + + + + + Version %s of OpenLP is now available for download (you are currently running version %s). +You can download the latest version from http://openlp.org + + + + + Your service has changed. Do you want to save those changes? + + + + + Default Theme: %s + + + + + MediaManagerItem + + + No Items Selected + + + + + Delete the selected item + + + + + You must select one or more items + + + + + &Add to Service + + + + + Send the selected item live + + + + + Add the selected item(s) to the service + + + + + &Show Live + + + + + Preview the selected item + + + + + You must select one or more items. + + + + + Import %s + + + + + Import a %s + + + + + Load %s + + + + + Load a new %s + + + + + New %s + + + + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Preview %s + + + + + Add %s to Service + + + + + &Edit %s + + + + + &Delete %s + + + + + &Preview %s + + + + + &Add to selected Service Item + + + + + You must select one or more items to preview. + + + + + You must select one or more items to send live. + + + + + No items selected + + + + + No Service Item Selected + + + + + You must select an existing service item to add to. + + + + + Invalid Service Item + + + + + You must select a %s service item. + + + + + MediaPlugin + + + <b>Media Plugin</b><br>This plugin allows the playing of audio and video media + + + + + MediaPlugin.MediaItem + + + Media + + + + + Select Media + + + + + Replace Live Background + + + + + You must select an item to delete. + + + + + OpenLP + + + Image Files + + + + + PluginForm + + + Plugin List + + + + + Plugin Details + + + + + Version: + + + + + TextLabel + + + + + About: + + + + + Status: + + + + + Active + + + + + Inactive + + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + + + + + PresentationPlugin + + + <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + + + + PresentationPlugin.MediaItem + + + Presentation + + + + + Select Presentation(s) + + + + + Automatic + + + + + Present using: + + + + + File exists + + + + + A presentation with that filename already exists. + + + + + You must select an item to delete. + + + + + PresentationPlugin.PresentationTab + + + Presentations + + + + + Available Controllers + + + + + available + + + + + RemotePlugin + + + <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer via a web browser or other app<br>The Primary use for this would be to send alerts from a creche + + + + + RemotePlugin.RemoteTab + + + Remotes + + + + + Remotes Receiver Port + + + + + 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 + + + Settings + + + + + 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 + + + &Delete recorded data + + + + + Start/Stop live song usage recording + + + + + <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service + + + + + Delete song usage to specified date + + + + + Generate report on Song Usage + + + + + Song Usage Status + + + + + &Extract recorded data + + + + + &Song Usage + + + + + SongsPlugin + + + &Song + + + + + Import songs using the import wizard. + + + + + Songs of Fellowship (temp menu item) + + + + + Import songs from the VOLS1_2.RTF, sof3words.rtf and sof4words.rtf supplied with the music books + + + + + Generic Document/Presentation Import (temp menu item) + + + + + Import songs from Word/Writer/Powerpoint/Impress + + + + + Open Songs of Fellowship file + + + + + Import Error + + + + + Error importing Songs of Fellowship file. +OpenOffice.org must be installed and you must be using an unedited copy of the RTF included with the Songs of Fellowship Music Editions + + + + + Open documents or presentations + + + + + <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + + + + + SongsPlugin.AuditDeleteDialog + + + Song Usage Delete + + + + + SongsPlugin.AuditDetailDialog + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + + + + + Report Location + + + + + SongsPlugin.AuthorsForm + + + Author Maintenance + + + + + Display name: + + + + + First name: + + + + + Last name: + + + + + Error + + + + + You need to type in the first name of the author. + + + + + You need to type in the last name of the author. + + + + + You haven't set a display name for the author, would you like me to combine the first and last names for you? + + + + + SongsPlugin.EditSongForm + + + Song Editor + + + + + &Title: + + + + + Alt&ernate Title: + + + + + &Lyrics: + + + + + &Verse Order: + + + + + &Add + + + + + &Edit + + + + + Ed&it All + + + + + &Delete + + + + + Title && Lyrics + + + + + Authors + + + + + &Add to Song + + + + + &Remove + + + + + &Manage Authors, Topics, Books + + + + + Topic + + + + + A&dd to Song + + + + + R&emove + + + + + Song Book + + + + + Authors, Topics && Book + + + + + Theme + + + + + New &Theme + + + + + Copyright Information + + + + + © + + + + + CCLI Number: + + + + + Comments + + + + + Theme, Copyright Info && Comments + + + + + Save && Preview + + + + + Add Author + + + + + This author does not exist, do you want to add them? + + + + + 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? + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + + + + + &Verse type: + + + + + &Insert + + + + + SongsPlugin.ImportWizardForm + + + No OpenLyrics Files Selected + + + + + You need to add at least one OpenLyrics song file to import from. + + + + + No OpenSong Files Selected + + + + + You need to add at least one OpenSong song file to import from. + + + + + No CCLI Files Selected + + + + + You need to add at least one CCLI file to import from. + + + + + No CSV File Selected + + + + + You need to specify a CSV file to import from. + + + + + Starting import... + + + + + Song Import Wizard + + + + + Welcome to the Song Import Wizard + + + + + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. + + + + + Select Import Source + + + + + Select the import format, and where to import from. + + + + + Format: + + + + + OpenLyrics + + + + + OpenSong + + + + + CCLI + + + + + CSV + + + + + Add Files... + + + + + Remove File(s) + + + + + Filename: + + + + + Browse... + + + + + Importing + + + + + Please wait while your songs are imported. + + + + + Ready. + + + + + %p% + + + + + SongsPlugin.MediaItem + + + Song + + + + + Song Maintenance + + + + + Maintain the lists of authors, topics and books + + + + + Search: + + + + + Type: + + + + + Clear + + + + + Search + + + + + Titles + + + + + Lyrics + + + + + Authors + + + + + %s (%s) + + + + + You must select an item to edit. + + + + + You must select an item to delete. + + + + + Delete song? + + + + + Delete %d songs? + + + + + Delete Confirmation + + + + + CCLI Licence: + + + + + SongsPlugin.SongBookForm + + + Edit Book + + + + + &Name: + + + + + &Publisher: + + + + + Error + + + + + You need to type in a name for the book. + + + + + SongsPlugin.SongImport + + + copyright + + + + + © + + + + + SongsPlugin.SongMaintenanceForm + + + Song Maintenance + + + + + Authors + + + + + Topics + + + + + Books/Hymnals + + + + + &Add + + + + + &Edit + + + + + &Delete + + + + + Error + + + + + Couldn't add your author. + + + + + Couldn't add your topic. + + + + + Couldn't add your book. + + + + + Couldn't save your author. + + + + + Couldn't save your topic. + + + + + Couldn't save your book. + + + + + Delete Author + + + + + Are you sure you want to delete the selected author? + + + + + This author can't 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 can't 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 can't 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 + + + + + SongsPlugin.SongsTab + + + Songs + + + + + Songs Mode + + + + + Enable search as you type + + + + + Display Verses on Live Tool bar + + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + + + + + Topic name: + + + + + Error + + + + + You need to type in a topic name! + + + + + Splashscreen + + + Starting + + + + + Splash Screen + + + + + ThemeManager + + + Import Theme + + + + + Delete Theme + + + + + Error + + + + + File is not a valid theme. + + + + + Edit Theme + + + + + Export Theme + + + + + You are unable to delete the default theme. + + + + + Theme Exists + + + + + Save Theme - (%s) + + + + + Select Theme Import File + + + + + New Theme + + + + + You have not selected a theme. + + + + + Create a new theme. + + + + + Edit a theme. + + + + + Delete a theme. + + + + + Import a theme. + + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Theme (*.*) + + + + + File is not a valid theme. +The content encoding is not UTF-8. + + + + + A theme with this name already exists. Would you like to overwrite it? + + + + + ThemesTab + + + Use the global theme, overriding any themes associated with either the service or the songs. + + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + + + + + Themes + + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + &Service Level + + + + + &Global Level + + + + + VerseType + + + Verse + + + + + Chorus + + + + + Bridge + + + + + Pre-Chorus + + + + + Intro + + + + + Ending + + + + + Other + + + diff --git a/resources/i18n/openlp_nb.ts b/resources/i18n/openlp_nb.ts index bbf2ecaef..0b8361dcd 100644 --- a/resources/i18n/openlp_nb.ts +++ b/resources/i18n/openlp_nb.ts @@ -1,4491 +1,3775 @@ - - - - BibleMediaItem + + + + AboutForm - - Quick - Rask - - - Ui_customEditDialog - - - Delete selected slide - Slett valgt slide - - - BiblesTab - - - ( and ) - ( og ) - - - RemoteTab - - - Remotes - Fjernmeldinger - - - ServiceManager - - - Save Service - Lagre møte - - - Ui_AmendThemeDialog - - - Shadow Size: - Skyggestørrelse: - - - Ui_OpenSongExportDialog - - - Close - Lukk - - - ThemeManager - - - Import Theme - Importer tema - - - Ui_AmendThemeDialog - - - Slide Transition - Lysbildeovergang - - - ImportWizardForm - - - Bible Exists - Bibelen eksisterer - - - ThemesTab - - - Theme level - Temanivå - - - BibleMediaItem - - - Bible - Bibel - - - ServiceManager - - - Save Changes to Service? - Lagre endringer til møteplanen? - - - SongUsagePlugin - - - &Delete recorded data - &Slett lagret data - - - Ui_OpenLPExportDialog - - - Song Title - Sangtittel - - - Ui_customEditDialog - - - Edit selected slide - Rediger merket lysbilde - - - SongMediaItem - - - CCLI Licence: - CCLI lisens: - - - BibleMediaItem - - - Clear - Slett - - - Ui_BibleImportWizard - - - Bible Import Wizard - Bibelimporteringsverktøy - - - Ui_customEditDialog - - - Edit All - Rediger alle - - - SongMaintenanceForm - - - Couldn't save your author. - Kunne ikke lagre forfatteren - - - Ui_ServiceNoteEdit - - - Service Item Notes - + + About OpenLP + - - - Ui_customEditDialog - - Add new slide at bottom - Legg til nytt lysbilde på bunnen - - - Clear - Slett - - - ThemesTab - - - Global theme - - - - - PresentationPlugin - - - <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - <b>Presentasjonstillegg</b> <br> Gir deg mulighet til å vise presentasjoner ved hjelp av en rekke ulike programmer. Programmene som er tilgjengelige finner du i rullemenyen. - - - SongUsagePlugin - - - Start/Stop live song usage recording - - - - - MainWindow - - - The Main Display has been blanked out - - - - - Ui_OpenSongExportDialog - - - Lyrics - Sangtekst - - - Ui_AlertDialog - - - Display - Vis - - - SongMaintenanceForm - - - This author can't be deleted, they are currently assigned to at least one song. - Denne forfatteren kan ikke slettes, den er knyttet til minst én sang. - - - Ui_customEditDialog - - - Delete - Slett - - - Ui_OpenSongImportDialog - - - OpenSong Folder: - OpenSong-mappe: - - - ThemeManager - - - Create a new theme - Opprett nytt tema - - - Ui_MainWindow - - - Open an existing service - Åpne eksisterende møteplan - - - SlideController - - - Move to previous - Flytt til forrige - - - Edit and re-preview Song - Endre og forhåndsvis sang - - - Ui_PluginViewDialog - - - Plugin Details - - - - - AlertsTab - - - pt - p.t.Impossible to translate without a context. Point? pro tempore (currently)? - - - Edit History: - Endre historikk: - - - SlideController - - - Delay between slides in seconds - Forsinkelse mellom lysbilder i sekund - - - BiblesTab - - - verse per line - vers per linje - - - Ui_customEditDialog - - - Theme: - Tema: - - - SongMaintenanceForm - - - Couldn't add your book. - Kunne ikke legge til boken. - - - Error - Feil - - - Ui_BibleImportWizard - - - Bible: - Bibel: - - - ThemeManager - - - Delete Theme - Slett tema - - - SplashScreen - - - Splash Screen - - - - - SongMediaItem - - - Song - Sang - - - Ui_OpenSongExportDialog - - - Song Title - Sangtittel - - - BibleMediaItem - - - Search - Søk - - - Ui_MainWindow - - - List the Plugins - Hent liste over tillegg - - - SongMaintenanceForm - - - No author selected! - Ingen forfatter er valgt! - - - SongUsageDeleteForm - - - Delete Selected Song Usage Events? - - - - - SongUsagePlugin - - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - - - - - Ui_customEditDialog - - - Move slide Up 1 - Flytt lysbildet én opp - - - SongsPlugin - - - OpenSong - OpenSong - - - AlertsManager - - - Alert message created and delayed - - - - - Ui_EditSongDialog - - - Alternative Title: - Alternativ tittel: - - - ServiceManager - - - Open Service - Åpne møteplan - - - BiblesTab - - - Display Style: - Visningsstil: - - - Ui_AmendThemeDialog - - - Image - Bilde - - - EditSongForm - - - You need to enter a song title. - Du må skrive inn en sangtittel. - - - ThemeManager - - - Error - Feil - - - Ui_SongUsageDeleteDialog - - - Song Usage Delete - Slett registrert sangbruk - - - ImportWizardForm - - - Invalid Bible Location - Ugyldig Bibelplassering - - - BibleMediaItem - - - Book: - Bok: - - - ThemeManager - - - Make Global - - - - - Ui_MainWindow - - - &Service Manager - - - - - ImportWizardForm - - - You need to specify a file with books of the Bible to use in the import. - Du må angi en fil som inneholder bøkene i Bibelen. - - - Ui_OpenLPImportDialog - - - Author - Forfatter - - - Ui_AmendThemeDialog - - - Height: - Høyde: - - - Ui_BibleImportWizard - - - Books Location: - Plassering av fil som inneholder bøkene: - - - ThemeManager - - - Delete a theme - Slett et tema - - - Ui_BibleImportWizard - - - Crosswalk - - - - - SongBookForm - - - Error - Error - - - Ui_AuthorsDialog - - - Last name: - Etternavn: - - - ThemesTab - - - Use the global theme, overriding any themes associated with either the service or the songs. - Bruk det globale temaet, og la det overstyre eventuelle tema som er tilknyttet møteplaner eller sanger. - - - Ui_customEditDialog - - - Title: - Tittel: - - - ImportWizardForm - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - Du må angi hvem som har opphavsrett til denne bibelutgaven! Bibler som ikke er tilknyttet noen opphavsrett må bli merket med dette. - - - SongMediaItem - - - Maintain the lists of authors, topics and books - Rediger liste over forfattere, emner og bøker. - - - Ui_AlertEditDialog - - - Save - Lagre - - - EditCustomForm - - - You have unsaved data - Du har data som ikke er lagret - - - BibleMediaItem - - - To: - Til: - - - Ui_AmendThemeDialog - - - Outline - Omriss - - - BibleMediaItem - - - Text Search - Tekstsøk - - - Ui_OpenLPExportDialog - - - openlp.org Song Exporter - openlp.org sangeksportør - - - SongUsagePlugin - - - Delete song usage to specified date - Slett data angående sangbruk frem til angitt dato - - - Ui_SongUsageDetailDialog - - - Report Location - - Is "report" verb or noun here? - - - Ui_BibleImportWizard - - - OpenSong - OpenSong - - - Ui_MainWindow - - - Open Service - Åpne møteplan - - - SongMediaItem - - - Titles - Titler - - - ImageMediaItem - - - Select Image(s) - Velg bilde(r) - - - BibleMediaItem - - - Search Type: - Søk i: - - - Ui_MainWindow - - - Media Manager - Innholdselementer - - - Alt+F4 - Alt+F4 - - - MediaManagerItem - - - &Preview - &Forhåndsvisning - - - GeneralTab - - - CCLI Details - CCLI-detaljer - - - SongSelect Password: - SongSelect-passord: - - - Ui_MainWindow - - - Toggle the visibility of the Preview Panel - Vis/skjul forhåndsvisningsvinduet - - - SongMaintenanceForm - - - Are you sure you want to delete the selected book? - Er du sikker på at du vil slette den merkede boken? - - - Ui_MainWindow - - - &User Guide - &Brukerveiledning - - - Set the interface language to English - Skift språk til engelsk - - - Ui_AmendThemeDialog - - - Main Font - Hovedskrifttype - - - ImportWizardForm - - - Empty Copyright - Tom copyright - - - AuthorsForm - - - You need to type in the first name of the author. - Du må skrive inn forfatterens fornavn. - - - SongsTab - - - Display Verses on Live Tool bar: - Vis versene på Live-verktøylinjen - - - ServiceManager - - - Move to top - Flytt til toppen - - - ImageMediaItem - - - Override background - Overstyr bakgrunn - - - Ui_SongMaintenanceDialog - - - Edit - Rediger - - - Ui_OpenSongExportDialog - - - Select All - Velg alle - - - ThemesTab - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - Bruk temaet fra hver sang i databasen. Hvis en sang ikke er tilknyttet et tema, bruk temaet til møteplanen. Hvis møteplanen ikke har et tema, bruk det globale temaet. - - - PresentationMediaItem - - - Presentation - Presentasjon - - - Ui_AmendThemeDialog - - - Solid Color - Ensfarget - - - CustomTab - - - Custom - Egendefinert - - - Ui_OpenLPImportDialog - - - Ready to import - Klar til å importere - - - MainWindow - - - OpenLP version %s has been updated to version %s - -You can obtain the latest version from http://openlp.org - OpenLP versjon %s har blitt oppgradert til versjon %s - -Du kan få tak i den siste versjonen hos http://openlp.org - - - Ui_BibleImportWizard - - - File Location: - Filplassering: - - - SlideController - - - Go to Verse - Gå til vers - - - SongMaintenanceForm - - - Couldn't add your topic. - Kunne ikke legge til emnet. - - - Ui_MainWindow - - - &Import - &Import - - - Quit OpenLP - Avslutt OpenLP - - - Ui_BibleImportWizard - - - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - Denne veiviseren vil hjelpe deg å importere Bibler fra en rekke ulike formater. Klikk på neste-knappen under for å starte prosessen ved å velge et format å importere fra. - - - Ui_OpenLPExportDialog - - - Title - Tittel - - - ImportWizardForm - - - Empty Version Name - Tomt versjonnavn - - - Ui_MainWindow - - - &Preview Panel - &Forhåndsvisningspanel - - - SlideController - - - Start continuous loop - Start kontinuerlig løkke - - - GeneralTab - - - primary - primær - - - Ui_EditSongDialog - - - Add a Theme - Legg til tema - - - Ui_MainWindow - - - &New - &Ny - - - Ui_customEditDialog - - - Credits: - - - - - SlideController - - - Live - Direkte - - - Ui_BibleImportWizard - - - Select Import Source - Velg importeringskilde - - - BiblesTab - - - continuous - kontinuerlig - - - Ui_AmendThemeDialog - - - Middle - Midtstilt - - - GeneralTab - - - Application Startup - Programoppstart - - - Ui_AmendThemeDialog - - - Use Default Location: - Bruk standardplassering - - - Ui_OpenSongImportDialog - - - Import - Importer - - - Ui_MainWindow - - - Ctrl+N - Ctrl+N - - - Ui_EditSongDialog - - - Verse Order: - Rekkefølge av versene - - - Ui_MainWindow - - - Default Theme: - Standardtema: - - - Toggle Preview Panel - Vis forhåndsvisningspanel - - - SongMediaItem - - - Lyrics - Sangtekst - - - Ui_OpenLPImportDialog - - - Progress: - Fremgang: - - - Ui_AmendThemeDialog - - - Shadow - Skygge - - - GeneralTab - - - Select monitor for output display: - Velg hvilken skjerm som skal brukes til fremvisning: - - - Ui_AmendThemeDialog - - - Italics - Kursiv - - - ServiceManager - - - Create a new service - Opprett ny møteplan - - - Ui_AmendThemeDialog - - - Background: - Bakgrunn: - - - Ui_OpenLPImportDialog - - - openlp.org Song Importer - openlp.org sangimportør - - - Ui_BibleImportWizard - - - Copyright: - Copyright: - - - ThemesTab - - - Service level - - - - - BiblesTab - - - [ and ] - [ og ] - - - Ui_customEditDialog - - - Save - Lagre - - - MediaManagerItem - - - You must select one or more items - Du må velge ett eller flere elementer - - - GeneralTab - - - Application Settings - Programinnstillinger - - - ServiceManager - - - Save this service - Lagre møteplan - - - ImportWizardForm - - - Open Books CSV file - Åpne CSV-fil som inneholder bøkene i Bibelen - - - GeneralTab - - - SongSelect Username: - SongSelect-brukernavn: - - - Ui_AmendThemeDialog - - - X Position: - X-posisjon - - - BibleMediaItem - - - No matching book could be found in this Bible. - Finner ingen matchende bøker i denne Bibelen. - - - Ui_BibleImportWizard - - - Server: - Server: - - - Download Options - Nedlastingsalternativer - - - ImportWizardForm - - - Invalid OpenSong Bible - Ugyldig OpenSong Bibel - - - GeneralTab - - - CCLI Number: - CCLI-nummer: - - - Ui_AmendThemeDialog - - - Center - Sentrert - - - ServiceManager - - - Theme: - Tema: - - - AlertEditForm - - - Please save or clear selected item - Vennligst lagre eller slett valgt element - - - Ui_MainWindow - - - &Live - &Direkte - - - SongMaintenanceForm - - - Delete Topic - Slett emne - - - Ui_MainWindow - - - English - Norsk - - - ImageMediaItem - - - You must select one or more items - Du må velge ett eller flere element - - - Ui_AuthorsDialog - - - First name: - Fornavn: - - - Ui_BibleImportWizard - - - Permission: - Tillatelse: - - - Ui_OpenSongImportDialog - - - Close - Lukk - - - Ui_SongUsageDetailDialog - - - Song Usage Extraction - - - - - Ui_AmendThemeDialog - - - Opaque - Gjennomsiktighet - - - ImportWizardForm - - - Your Bible import failed. - Bibelimporteringen mislyktes. - - - SlideController - - - Start playing media - Start avspilling av media - - - SongMediaItem - - - Type: - Type: - - - SongMaintenanceForm - - - This book can't be deleted, it is currently assigned to at least one song. - Denne boken kan ikke slettes, den er tilknyttet minst én sang. - - - Ui_AboutDialog - - - Close - Lukk - - - TopicsForm - - - You need to type in a topic name! - Skriv inn et emnenavn! - - - Ui_OpenSongExportDialog - - - Song Export List - Sangeksporteringsliste - - - BibleMediaItem - - - Dual: - Dobbel: - - - ImageTab - - - sec - sek - - - ServiceManager - - - Delete From Service - Slett fra møteplan - - - GeneralTab - - - Automatically open the last service - Åpne forrige møteplan automatisk - - - Ui_OpenLPImportDialog - - - Song Import List - Sangimporteringsliste - - - Ui_OpenSongExportDialog - - - Author - Forfatter - - - Ui_AmendThemeDialog - - - Outline Color: - Omrissfarge: - - - Ui_MainWindow - - - F9 - F9 - - - F8 - F8 - - - ServiceManager - - - &Change Item Theme - &Bytt objekttema - - - Ui_SongMaintenanceDialog - - - Topics - Emne - - - Ui_OpenLPImportDialog - - - Import File Song List - Importer fil med sangliste - - - Ui_customEditDialog - - - Edit Custom Slides - Rediger egendefinerte lysbilder - - - Ui_EditSongDialog - - - &Remove - &Fjern - - - Ui_BibleImportWizard - - - Set up the Bible's license details. - Skriv inn Bibelens lisensdetaljer. - - - Ui_EditVerseDialog - - - Number - Nummer - - - Ui_AmendThemeDialog - - - Alignment - Justering - - - SongMaintenanceForm - - - Delete Book - Slett bok - - - ThemeManager - - - Edit a theme - Rediger et tema - - - Ui_BibleImportWizard - - - BibleGateway - BibleGateway - - - GeneralTab - - - Preview Next Song from Service Manager - Forhåndsvis neste sang i møteplanen - - - Ui_EditSongDialog - - - Title && Lyrics - Tittel && Sangtekst - - - SongMaintenanceForm - - - No book selected! - Ingen bok er valgt! - - - SlideController - - - Move to live - - - - - Ui_EditVerseDialog - - - Other - Annet - - - Ui_EditSongDialog - - - Theme - Tema - - - Ui_EditVerseDialog - - - Verse - Vers - - - Ui_SongUsageDetailDialog - - - Select Date Range - Velg dato-område - - - Ui_MainWindow - - - Save the current service to disk - Lagre gjeldende møteplan - - - BibleMediaItem - - - Chapter: - Kapittel - - - Ui_AmendThemeDialog - - - Bottom - Bunn - - - PresentationTab - - - Available Controllers - - - - - Ui_MainWindow - - - Add &Tool... - Legg til & Verktøy... - - - TopicsForm - - - Error - Feil - - - RemoteTab - - - Remotes Receiver Port - - - - - Ui_MainWindow - - - &View - &Vis - - - Ui_AmendThemeDialog - - - Normal - Normal - - - Ui_OpenLPExportDialog - - - Close - Lukk - - - Ui_BibleImportWizard - - - Username: - Brukernavn: - - - ThemeManager - - - Edit Theme - Endre tema - - - ServiceManager - - - &Preview Verse - &Forhåndsvis vers - - - Ui_AlertDialog - - - Alert Message - Varsel-melding - - - ImportWizardForm - - - Finished import. - Import fullført. - - - GeneralTab - - - Show blank screen warning - - - - - ImportWizardForm - - - You need to specify a file of Bible verses to import. - Du må angi en fil med bibelvers som skal importeres. - - - AlertsTab - - - Location: - Plassering: - - - Ui_EditSongDialog - - - Authors, Topics && Book - Forfatter, Emne && Bok - - - EditSongForm - - - You need to enter some verses. - Du må skrive inn noen vers. - - - CustomTab - - - Display Footer: - Vis bunntekst: - - - BiblePlugin - - - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - <strong>Bibel-tillegg</strong><br /> Dette tillegget gjør det mulig at bibelvers fra ulike kilder vises på skjermen under møtet. - - - Ui_EditSongDialog - - - Copyright Information - Copyright-informasjon - - - Ui_MainWindow - - - &Export - &Eksporter - - - Ui_AmendThemeDialog - - - Bold - Fet - - - SongsPlugin - - - Export songs in OpenLP 2.0 format - Eksporter sanger i OpenLP 2.0-format - - - MediaManagerItem - - - Load a new - Last inn en ny - - - AlertEditForm - - - Missing data - Data savnes - - - SongsPlugin - - - <b>Song Plugin</b> <br>This plugin allows Songs to be managed and displayed.<br> - <b>Sang-tillegg</b><br>Dette tillegget viser og håndterer sanger.<br> - - - Ui_AmendThemeDialog - - - Footer Font - Skrifttype bunntekst - - - EditSongForm - - - Invalid verse entry - vX - Ugyldig vers - vX - - - ServiceManager - - - OpenLP Service Files (*.osz) - OpenLP møteplan (*.osz) - - - BibleMediaItem - - - No Book Found - Ingen bøker funnet - - - Ui_OpenLPExportDialog - - - Export - Eksporter - - - Ui_BibleImportWizard - - - Location: - Plassering: - - - BibleMediaItem - - - Keep - Behold - - - SongUsagePlugin - - - Generate report on Song Usage - Lag rapport angående bruk av sanger - - - Ui_EditSongDialog - - - Topic - Emne - - - Ui_MainWindow - - - &Open - &Åpne - - - PresentationMediaItem - - - Present using: - Presenter ved hjelp av: - - - ServiceManager - - - &Live Verse - &Direktevers - - - Ui_EditSongDialog - - - Lyrics: - Sangtekst: - - - Ui_AboutDialog - - - Project Lead - Raoul "superfly" Snyman - -Developers - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Testers - Wesley "wrst" Stout - Prosjektleder -Raoul "superfly" Snyman - -Utviklere -Tim "TRB143" Bentley -Jonathan "gushie" Corwin -Michael "cocooncrash" Gorven -Scott "sguerrieri" Guerrieri -Raoul "superfly" Snyman -Maikel Stuivenberg -Martin "mijiti" Thompson -Jon "Meths" Tibble -Carsten "catini" Tingaard - -Testere -Wesley "wrst" Stout - - - Ui_OpenLPExportDialog - - - Lyrics - Sangtekst - - - AuthorsForm - - - You haven't set a display name for the author, would you like me to combine the first and last names for you? - Du har ikke angitt et visningsnavn for forfatteren, vil du bruke forfatterens fulle navn som visningsnavn? - - - SongMediaItem - - - Clear - Slett - - - AmendThemeForm - - - Slide Height is %s rows - - - - - Ui_OpenSongImportDialog - - - Progress: - Fremgang: - - - Ui_MainWindow - - - Toggle Theme Manager - Åpne tema-behandler - - - Ui_AlertDialog - - - Alert Text: - Varsel-tekst: - - - Ui_EditSongDialog - - - Edit - Rediger - - - AlertsTab - - - Font Color: - Skriftfarge: - - - Ui_AmendThemeDialog - - - Theme Maintenance - Vedlikehold av tema - - - CustomTab - - - Custom Display - Tilpasset visning - - - Ui_OpenSongExportDialog - - - Title - Tittel - - - Ui_AmendThemeDialog - - - <Color1> - <Farge1> - - - Ui_EditSongDialog - - - Authors - Forfattere - - - ThemeManager - - - Export Theme - Eksporter tema - - - ImageMediaItem - - - No items selected... - Ingen elementer valgt - - - Ui_SongBookDialog - - - Name: - Navn: - - - Ui_AuthorsDialog - - - Author Maintenance - Behandle forfatterdata - - - Ui_AmendThemeDialog - - - Font Footer - Skrifttype bunntekst - - - Ui_MainWindow - - - &Settings - &Innstillinger - - - &Options - &Alternativer - - - BibleMediaItem - - - Results: - Resultat: - - - Ui_OpenLPExportDialog - - - Full Song List - Komplett sangliste - - - ServiceManager - - - Move to &top - Flytt til &toppen - - - SlideController - - - Move to last - Flytt til sist - - - Ui_OpenLPExportDialog - - - Progress: - Fremgang: - - - Ui_SongMaintenanceDialog - - - Add - Legg til - - - SongMaintenanceForm - - - Are you sure you want to delete the selected author? - Er du sikker på at du vil slette den valgte forfatteren? - - - SongUsagePlugin - - - Song Usage Status - - - - - BibleMediaItem - - - Verse Search - Søk i vers - - - Ui_SongBookDialog - - - Edit Book - Rediger bok - - - EditSongForm - - - Save && Preview - Lagre && Forhåndsvis - - - Ui_SongBookDialog - - - Publisher: - Utgiver: - - - Ui_AmendThemeDialog - - - Font Weight: - Skrifttykkelse - - - Ui_BibleImportWizard - - - Bible Filename: - Bibel-filnavn: - - - Ui_AmendThemeDialog - - - Transparent - Gjennomsiktig - - - SongMediaItem - - - Search - Søk - - - Ui_BibleImportWizard - - - Format: - Format: - - - Ui_AmendThemeDialog - - - Background - Bakgrunn - - - Ui_BibleImportWizard - - - Importing - Importerer - - - Ui_customEditDialog - - - Edit all slides - Rediger alle lysbilder - - - MediaMediaItem - - - Select Media - Velg media - - - PresentationMediaItem - - - Select Presentation(s) - Velg presentasjon(er) - - - SongMediaItem - - - Authors - Forfattere - - - Ui_PluginViewDialog - - - Active - Aktiv - - - SongMaintenanceForm - - - Couldn't add your author. - Kunne ikke legge til forfatteren. - - - Ui_MainWindow - - - Ctrl+O - Ctrl+O - - - Ui_AmendThemeDialog - - - Other Options - Andre alternativer - - - Ui_AlertEditDialog - - - Edit - Rediger - - - Ui_EditSongDialog - - - Song Editor - Sangredigeringsverktøy - - - MediaPlugin - - - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - <b>Media-tillegg</b><br> Dette tillegget spiller av lyd og video. - - - AlertsTab - - - Font - Skrifttype - - - SongsPlugin - - - &Song - &Sang - - - Ui_MainWindow - - - &File - &Fil - - - MediaManagerItem - - - &Edit - &Rediger - - - Ui_AmendThemeDialog - - - Vertical - Vertikal - - - Width: - Bredde: - - - ThemesTab - - - Global level - - - - - ThemeManager - - - You are unable to delete the default theme. - Du kan ikke slette det globale temaet - - - BibleMediaItem - - - Version: - Versjon: - - - Ui_AboutDialog - - - OpenLP <version> build <revision> - Open Source Lyrics Projection + + OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version> build <revision> - Open Source Lyrics Projection + + + + + About + Om + + + + Project Lead + Raoul "superfly" Snyman -OpenLP er et gratis presentasjonsverktøy tilegnet kirker, som kan brukes til å vise sanger, bibelvers, videoer, bilder og presentasjoner (hvis OpenOffice.org, PowerPoint eller PowerPoint Viewer er installert) ved hjelp av en data og en projektor. +Developers + Tim "TRB143" Bentley + Jonathan "gushie" Corwin + Michael "cocooncrash" Gorven + Scott "sguerrieri" Guerrieri + Raoul "superfly" Snyman + Martin "mijiti" Thompson + Jon "Meths" Tibble -Finn ut mer om OpenLP: http://openlp.org/ +Contributors + Meinert "m2j" Jordan + Christian "crichter" Richter + Maikel Stuivenberg + Carsten "catini" Tingaard - OpenLP er skrevet og vedlikeholdt av frivillige. Hvis ønsker å se flere gratis, kristne program i fremtiden, bør du vurdere å bidra ved å trykke på knappen under. - - - SongsPlugin +Testers + Philip "Phill" Ridout + Wesley "wrst" Stout (lead) + +Packagers + Thomas "tabthorpe" Abthorpe (FreeBSD) + Tim "TRB143" Bentley (Fedora) + Michael "cocooncrash" Gorven (Ubuntu) + Matthias "matthub" Hub (Mac OS X) + Raoul "superfly" Snyman (Windows) + + + - - OpenLP 2.0 - OpenLP 2.0 - - - ServiceManager + + Credits + + - - New Service - Ny møteplan - - - Ui_TopicsDialog + + Copyright © 2004-2010 Raoul Snyman +Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard + +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. + + +GNU GENERAL PUBLIC LICENSE +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification follow. + +GNU GENERAL PUBLIC LICENSE +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: + +a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. + +b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. + +c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. + +3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: + +a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. + +This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version', you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. + +<one line to give the program's name and a brief idea of what it does.> +Copyright (C) <year> <name of author> + +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it starts in an interactive mode: + +Gnomovision version 69, Copyright (C) year name of author +Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type "show w". +This is free software, and you are welcome to redistribute it under certain conditions; type "show c" for details. + +The hypothetical commands "show w" and "show c" should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than "show w" and "show c"; they could even be mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: + +Yoyodyne, Inc., hereby disclaims all copyright interest in the program "Gnomovision" (which makes passes at compilers) written by James Hacker. + +<signature of Ty Coon>, 1 April 1989 +Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. + + - - Topic name: - Emnenavn: - - - Ui_BibleImportWizard + + License + Lisens + - - License Details - Lisensdetaljer - - - Ui_AboutDialog + + Contribute + + - - License - Lisens - - - Ui_EditSongDialog + + Close + Lukk + - - R&emove - &Fjern - - - ThemeManager + + build %s + + + + + AlertsPlugin - - File is not a valid theme. - Filen er ikke et gyldig tema. - - - Ui_BibleImportWizard + + &Alert + + - - Verse Location: - Plassering av vers: - - - AlertEditForm + + <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen + + - - Item selected to Edit - Element som skal redigeres - - - BibleMediaItem + + Show an alert message. + + + + + AlertsPlugin.AlertForm - - From: - Fra: - - - Ui_AmendThemeDialog + + Alert Message + Varsel-melding + - - Shadow Color: - Skyggefarge: - - - ServiceManager + + Alert &text: + + - - &Notes - &Notis - - - Ui_MainWindow + + &Parameter(s): + + - - E&xit - &Avslutt - - - Ui_OpenLPImportDialog + + &New + &Ny + - - Close - Lukk - - - MainWindow + + &Save + &Lagre + - - OpenLP Version Updated - OpenLP versjonen har blitt oppdatert - - - Ui_customEditDialog + + &Delete + + - - Replace edited slide - Erstatt redigert lysbilde - - - EditCustomForm + + Displ&ay + + - - You need to enter a title - Du må angi en tittel - - - ThemeManager + + Display && Cl&ose + + - - Theme Exists - Temaet eksisterer - - - Ui_MainWindow + + &Close + + - - &Help - &Hjelp - - - Ui_OpenSongExportDialog + + New Alert + + - - OpenSong Song Exporter - OpenSong sangeksportør - - - Ui_AmendThemeDialog + + You haven't specified any text for your alert. Please type in some text before clicking New. + + + + + AlertsPlugin.AlertsManager - - Vertical Align: - Vertikal justering: - - - Ui_EditVerseDialog + + Alert message created and displayed. + + + + + AlertsPlugin.AlertsTab - - Pre-Chorus - Pre-Chorus - - - Ui_AmendThemeDialog + + Alerts + + - - Top - Topp - - - BiblesTab + + Font + Skrifttype + - - Display Dual Bible Verses - Vis doble bibelvers - - - Ui_MainWindow + + Font Name: + + - - Toggle Service Manager - Vis møteplanlegger - - - Ui_EditSongDialog + + Font Color: + + - - Delete - Slett - - - MediaManagerItem + + Background Color: + + - - &Add to Service - &Legg til i møteplan - - + + Font Size: + + + + + pt + + + + + Alert timeout: + + + + + s + + + + + Location: + + + + + Preview + + + + + openlp.org + + + + + Top + Topp + + + + Middle + Midtstilt + + + + Bottom + + + + AmendThemeForm - - First Color: - Første farge: - - - ThemesTab - - - Song level - Sangnivå - - - alertsPlugin - - - Show an alert message - Vis varsel - - - Ui_MainWindow - - - Ctrl+F1 - Ctrl+F1 - - - SongMaintenanceForm - - - Couldn't save your topic. - Kunne ikke lagre emnet. - - - Ui_MainWindow - - - Save the current service under a new name - Lagre gjeldende møteplan under et nytt navn - - - Ui_OpenLPExportDialog - - - Remove Selected - Fjern merket - - - ThemeManager - - - Delete theme - Slett tema - - - ImageTab - - - Image Settings - Bildeinnstillinger - - - Ui_OpenSongImportDialog - - - OpenSong Song Importer - - - - - BiblesTab - - - Bibles - Bibler - - - SongUsagePlugin - - - &Extract recorded data - - - - - AlertsTab - - - Font Name: - - - - - Ui_MainWindow - - - &Web Site - &Internett side - - - MediaManagerItem - - - Send the selected item live - - - - - Ui_MainWindow - - - M&ode - + + Theme Maintenance + Vedlikehold av tema - - Translate the interface to your language - + + &Visibility: + - - Service Manager - - - - - CustomMediaItem - - - Custom - Egendefinert - - - Ui_BibleImportWizard - - - OSIS - - - - - SongsPlugin - - - openlp.org 1.0 - openlp.org 1.0 - - - Ui_MainWindow - - - &Theme - &Tema - - - Ui_EditVerseDialog - - - Edit Verse - Rediger Vers - - - Ui_MainWindow - - - &Language - &Språk - - - SlideController - - - Verse - Vers - - - ServiceManager - - - Your service is unsaved, do you want to save those changes before creating a new one ? - - - - - Ui_OpenSongExportDialog - - - Remove Selected - - - - - SongMediaItem - - - Search: - Søk: - - - MainWindow - - - Save Changes to Service? - + + Opaque + Gjennomsiktighet - - Your service has changed, do you want to save those changes? - + + Transparent + Gjennomsiktig - - - ServiceManager - - &Delete From Service - + + Type: + Type: - - - Ui_EditSongDialog - - &Add to Song - + + Solid Color + Ensfarget - - - Ui_MainWindow - - &About - &Om - - - ImportWizardForm - - - You need to specify a version name for your Bible. - + + Gradient + - - - BiblesTab - - Only show new chapter numbers - + + Image + - - - Ui_AlertEditDialog - - Delete - Slett - - - EditCustomForm - - - Error - Feil - - - RemotesPlugin - - - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer.<br>The Primary use for this would be to send alerts from a creche - + + Image: + - - - BibleMediaItem - - Find: - Finn: - - - AlertEditForm - - - Item selected to Add - + + Gradient: + - - - Ui_AmendThemeDialog - - Right - + + Horizontal + - - - ThemeManager - - Save Theme - (%s) - + + Vertical + Vertikal - - - MediaManagerItem - - Add the selected item(s) to the service - + + Circular + - - - AuthorsForm - - Error - Feil - - - Ui_AmendThemeDialog - - - Font Color: - + + &Background + - - - Ui_OpenLPExportDialog - - Select openlp.org export filename: - + + Main Font + Hovedskrifttype - - - Ui_SettingsDialog - - Settings - Innstillinger - - - BiblesTab - - - Verse Display - + + Font: + - - - MediaManagerItem - - Edit the selected - + + Color: + - - - SlideController - - Move to next - + + Size: + Størrelse: - - - Ui_MainWindow - - &Plugin List - &Tillegsliste - - + + pt + + + + + Wrap indentation: + + + + + Adjust line spacing: + + + + + Normal + Normal + + + + Bold + Fet + + + + Italics + Kursiv + + + + Bold/Italics + + + + + Style: + + + + + Display Location + + + + + X position: + + + + + Y position: + + + + + Width: + Bredde: + + + + Height: + Høyde: + + + + px + + + + + &Main Font + + + + + Footer Font + Skrifttype bunntekst + + + + &Footer Font + + + + + Outline + Omriss + + + + Outline size: + + + + + Outline color: + + + + + Show outline: + + + + + Shadow + Skygge + + + + Shadow size: + + + + + Shadow color: + + + + + Show shadow: + + + + + Alignment + Justering + + + + Horizontal align: + + + + + Left + + + + + Right + + + + + Center + Sentrert + + + + Vertical align: + + + + + Top + Topp + + + + Middle + Midtstilt + + + + Bottom + + + + + Slide Transition + Lysbildeovergang + + + + &Other Options + + + + + Preview + + + + + All Files + + + + + Select Image + + + + + First color: + + + + + Second color: + + + + + Slide height is %s rows. + + + + + Theme &name: + + + + + Use default location + + + + + Transition active + + + + + BibleDB + + + Book not found + + + + BiblePlugin - - &Bible - - - - - Ui_BibleImportWizard - - - Web Download - - - - - Ui_AmendThemeDialog - - - Horizontal - - - - - ImportWizardForm - - - Open OSIS file - - - - - Ui_AmendThemeDialog - - - Circular - - - - - PresentationMediaItem - - - Automatic - Automatisk - - - SongMaintenanceForm - - - Couldn't save your book. - - - - - Ui_AmendThemeDialog - - - pt - + + <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. + <strong>Bibel-tillegg</strong><br /> Dette tillegget gjør det mulig at bibelvers fra ulike kilder vises på skjermen under møtet. - - <Color2> - <Farge2> - - - Ui_OpenLPImportDialog - - - Lyrics - + + &Bible + - - - BiblesTab + + + BiblesPlugin,BiblesTab - - No brackets - + + Bibles + Bibler - - - Ui_AlertEditDialog + + + BiblesPlugin.BiblesTab - - Maintain Alerts - - - - - Ui_AmendThemeDialog - - - px - - - - - ServiceManager - - - Select a theme for the service - - - - - ThemesTab - - - Themes - Tema - - - Ui_PluginViewDialog - - - Status: - Status: - - - Ui_EditSongDialog - - - CCLI Number: - - - - - ImportWizardForm - - - This Bible already exists! Please import a different Bible or first delete the existing one. - - - - - Ui_MainWindow - - - &Translate - + + Verse Display + - - Save Service As - - - - - Ui_SongMaintenanceDialog - - - Authors - - - - - SongUsageDetailForm - - - Output File Location - - - - - BiblesTab - - - { and } - - - - - GeneralTab - - - Prompt to save Service before starting New - - - - - ImportWizardForm - - - Starting import... - - - - - BiblesTab - - - Note: -Changes don't affect verses already in the service - - - - - Ui_EditVerseDialog - - - Intro - - - - - ServiceManager - - - Move up order - - - - - PresentationTab - - - available - - - - - ThemeManager - - - default - - - - - SongMaintenanceForm - - - Delete Author - - - - - Ui_AmendThemeDialog - - - Display Location - - - - - Ui_PluginViewDialog - - - Version: - - - - - Ui_AlertEditDialog - - - Add - Legg til - - - GeneralTab - - - General - - - - - Ui_AmendThemeDialog - - - Y Position: - - - - - ServiceManager - - - Move down order - - - - - BiblesTab - - - verse per slide - - - - - Ui_BibleImportWizard - - - Welcome to the Bible Import Wizard - - - - - Ui_AmendThemeDialog - - - Show Shadow: - - - - - AlertsTab - - - Preview - - - - - alertsPlugin - - - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - - - - - GeneralTab - - - Show the splash screen - - - - - Ui_MainWindow - - - New Service - - - - - SlideController - - - Move to first - - - - - Ui_MainWindow - - - &Online Help - - - - - SlideController - - - Blank Screen - - - - - Ui_MainWindow - - - Save Service - + + Only show new chapter numbers + - - Save &As... - + + Layout style: + - - Toggle the visibility of the Media Manager - + + Display style: + - - - MediaManagerItem - - Delete the selected item - + + Bible theme: + - - - Ui_EditSongDialog - - Add - Legg til - - - alertsPlugin - - - &Alert - + + Verse Per Slide + - - - BibleMediaItem - - Advanced - Avansert - - - ImageMediaItem - - - Image(s) - Bilde(r) - - - Ui_MainWindow - - - F11 - F11 - - - F10 - F10 - - - F12 - F12 - - - Ui_BibleImportWizard - - - Select the import format, and where to import from. - + + Verse Per Line + - - + + + Continuous + + + + + No Brackets + + + + + ( And ) + + + + + { And } + + + + + [ And ] + + + + + Note: +Changes do not affect verses already in the service. + + + + + Display dual Bible verses + + + + + BiblesPlugin.ImportWizardForm + + + Bible Import Wizard + Bibelimporteringsverktøy + + + + Welcome to the Bible Import Wizard + + + + + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + Denne veiviseren vil hjelpe deg å importere Bibler fra en rekke ulike formater. Klikk på neste-knappen under for å starte prosessen ved å velge et format å importere fra. + + + + Select Import Source + Velg importeringskilde + + + + Select the import format, and where to import from. + + + + + Format: + Format: + + + + OSIS + + + + + CSV + + + + + OpenSong + OpenSong + + + + Web Download + + + + + File location: + + + + + Books location: + + + + + Verse location: + + + + + Bible filename: + + + + + Location: + + + + + Crosswalk + + + + + BibleGateway + BibleGateway + + + + Bible: + Bibel: + + + + Download Options + Nedlastingsalternativer + + + + Server: + Server: + + + + Username: + Brukernavn: + + + + Password: + + + + + Proxy Server (Optional) + + + + + License Details + Lisensdetaljer + + + + Set up the Bible's license details. + Skriv inn Bibelens lisensdetaljer. + + + + Version name: + + + + + Copyright: + Copyright: + + + + Permission: + Tillatelse: + + + + Importing + + + + + Please wait while your Bible is imported. + + + + + Ready. + Klar. + + + + Invalid Bible Location + Ugyldig Bibelplassering + + + + You need to specify a file to import your Bible from. + + + + + Invalid Books File + + + + + You need to specify a file with books of the Bible to use in the import. + Du må angi en fil som inneholder bøkene i Bibelen. + + + + Invalid Verse File + + + + + You need to specify a file of Bible verses to import. + Du må angi en fil med bibelvers som skal importeres. + + + + Invalid OpenSong Bible + Ugyldig OpenSong Bibel + + + + You need to specify an OpenSong Bible file to import. + + + + + Empty Version Name + Tomt versjonnavn + + + + You need to specify a version name for your Bible. + + + + + Empty Copyright + Tom copyright + + + + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + Du må angi hvem som har opphavsrett til denne bibelutgaven! Bibler som ikke er tilknyttet noen opphavsrett må bli merket med dette. + + + + Bible Exists + Bibelen eksisterer + + + + This Bible already exists! Please import a different Bible or first delete the existing one. + + + + + Open OSIS File + + + + + Open Books CSV File + + + + + Open Verses CSV File + + + + + Open OpenSong Bible + + + + + Starting import... + + + + + Finished import. + Import fullført. + + + + Your Bible import failed. + Bibelimporteringen mislyktes. + + + + BiblesPlugin.MediaItem + + + Bible + Bibel + + + + Quick + Rask + + + + Advanced + Avansert + + + + Version: + + + + + Dual: + Dobbel: + + + + Search type: + + + + + Find: + Finn: + + + + Search + Søk + + + + Results: + Resultat: + + + + Book: + Bok: + + + + Chapter: + Kapittel + + + + Verse: + + + + + From: + Fra: + + + + To: + Til: + + + + Verse Search + Søk i vers + + + + Text Search + Tekstsøk + + + + Clear + + + + + Keep + Behold + + + + No Book Found + Ingen bøker funnet + + + + No matching book could be found in this Bible. + Finner ingen matchende bøker i denne Bibelen. + + + + etc + + + + + Bible not fully loaded. + + + + + BiblesPlugin.Opensong + + + Importing + + + + CustomPlugin - - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> - + + <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> + - - - Ui_MainWindow + + + CustomPlugin.CustomTab - - Alt+F7 - ALT+F7 - - - Add an application to the list of tools - - - - - EditSongForm - - - Invalid verse entry - values must be Numeric, I,B,C,T,P,E,O - - - - - ServiceManager - - - Move &down - - - - - BiblesTab - - - Bible Theme: - - - - - SongsPlugin - - - Export songs in openlp.org 1.0 format - - - - - Ui_MainWindow - - - Theme Manager - - - - - AlertsTab - - - Alerts - - - - - Ui_customEditDialog - - - Move slide down 1 - - - - - Ui_AmendThemeDialog - - - Font: - - - - - ServiceManager - - - Load an existing service - - - - - Ui_MainWindow - - - Toggle the visibility of the Theme Manager - - - - - PresentationTab - - - Presentations - - - - - SplashScreen - - - Starting - - - - - ImageTab - - - Slide Loop Delay: - - - - - ServiceManager - - - Move to end - - - - - AlertsTab - - - Alert timeout: - - - - - Ui_MainWindow - - - &Preview Pane - - - - - MediaManagerItem - - - Add a new - - - - - ThemeManager - - - Select Theme Import File - - - - - New Theme - - - - - MediaMediaItem - - - Media - - - - - Ui_BibleImportWizard - - - Password: - - - - - Ui_AmendThemeDialog - - - Outline Size: - - - - - Ui_OpenSongExportDialog - - - Progress: - - - - - AmendThemeForm - - - Second Color: - - - - - Ui_EditSongDialog - - - Theme, Copyright Info && Comments - - - - - Ui_MainWindow - - - &Theme Manager - - - - - Ui_OpenLPImportDialog - - - Select openlp.org songfile to import: - - - - - Ui_EditSongDialog - - - Song Book - - - - - Ui_OpenLPExportDialog - - - Author - - - - - Ui_AmendThemeDialog - - - Wrap Indentation - + + Custom + - - - ThemeManager - - Import a theme - + + Custom Display + Tilpasset visning - - - ImageMediaItem - - Image - + + Display footer + - - - SongsTab + + + CustomPlugin.EditCustomForm - - Enable search as you type: - + + Edit Custom Slides + Rediger egendefinerte lysbilder - - - Ui_AlertDialog - - Cancel - + + Move slide up once position. + - - - Ui_OpenLPImportDialog - - Import - + + Move slide down one position. + - - - Ui_EditVerseDialog - - Chorus - + + &Title: + - - - Ui_EditSongDialog - - Edit All - + + Add New + Legg til Ny - - - AuthorsForm - - You need to type in the last name of the author. - + + Add a new slide at bottom. + - - - SongsTab - - Songs Mode - + + Edit + - - - Ui_AmendThemeDialog - - Left - + + Edit the selected slide. + - - - ThemesTab - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - + + Edit All + - - - ImageTab - - Images - + + Edit all the slides at once. + - - - BibleMediaItem - - Verse: - + + Save + Lagre - - - Ui_BibleImportWizard - - CSV - + + Save the slide currently being edited. + - - - Ui_OpenLPExportDialog - - Song Export List - + + Delete + - - - ThemeManager - - Export theme - + + Delete the selected slide. + - - - Ui_SongMaintenanceDialog - - Delete - + + Clear + - - - Ui_AmendThemeDialog - - Theme Name: - + + Clear edit area + - - - Ui_AboutDialog - - About OpenLP - + + Split Slide + - - - Ui_MainWindow - - Toggle the visibility of the Service Manager - + + Split a slide into two by inserting a slide splitter. + - - - PresentationMediaItem - - A presentation with that filename already exists. - + + The&me: + - - - ImageMediaItem - - Allow the background of live slide to be overridden - + + &Credits: + - - - SongUsageDeleteForm - - Are you sure you want to delete selected Song Usage data? - + + Save && Preview + - - - AlertsTab - - openlp.org - + + Error + Feil - - - ImportWizardForm - - Invalid Books File - + + You need to type in a title. + - - - Ui_OpenLPImportDialog - - Song Title - + + You need to add at least one slide + - - - MediaManagerItem - - &Show Live - + + You have one or more unsaved slides, please either save your slide(s) or clear your changes. + - - - AlertsTab + + + CustomPlugin.MediaItem - - Keep History: - + + Custom + - - - Ui_AmendThemeDialog - - Image: - + + You haven't selected an item to edit. + - - - ImportWizardForm - - Open Verses CSV file - + + You haven't selected an item to delete. + - - - Ui_customEditDialog + + + DisplayTab - - Set Theme for Slides - + + Displays + - - - Ui_MainWindow - - More information about OpenLP - + + Default Settings + - - - AlertsTab - - Background Color: - + + X: + - - - SongMaintenanceForm - - No topic selected! - + + Y: + - - - Ui_MainWindow - - &Media Manager - + + Height: + Høyde: - - &Tools - + + Width: + Bredde: - - - AmendThemeForm - - Background Color: - + + Custom Settings + - - - Ui_EditSongDialog - - A&dd to Song - + + Width + - - Title: - + + Override display settings + - - + + GeneralTab - - Screen - - - - - SongMaintenanceForm - - - This topic can't be deleted, it is currently assigned to at least one song. - - - - - AlertsTab - - - s - - - - - Ui_AlertEditDialog - - - Clear - - - - - Ui_BibleImportWizard - - - Please wait while your Bible is imported. - - - - - MediaManagerItem - - - No items selected... - - - - - Ui_OpenLPImportDialog - - - Select All - - - - - Ui_AmendThemeDialog - - - Font Main - - - - - Ui_OpenLPImportDialog - - - Title - - - - - Ui_OpenSongExportDialog - - - Select OpenSong song folder: - - - - - Ui_MainWindow - - - Toggle Media Manager - - - - - SongUsagePlugin - - - &Song Usage - - - - - GeneralTab - - - Monitors - - - - - EditCustomForm - - - You need to enter a slide - - - - - ThemeManager - - - You have not selected a theme. - - - - - Ui_EditVerseDialog - - - Verse Type - - - - - ImportWizardForm - - - You need to specify a file to import your Bible from. - - - - - Ui_EditSongDialog - - - Comments - - - - - AlertsTab - - - Bottom - - - - - Ui_MainWindow - - - Create a new Service - - - - - AlertsTab - - - Top - Topp - - - SlideController - - - Preview - - - - - Ui_PluginViewDialog - - - TextLabel - + + CCLI Details + CCLI-detaljer - - About: - Om: - - - Inactive - - - - - Ui_OpenSongExportDialog - - - Ready to export - Klar til eksportering - - - Export - Eksporter - - - Ui_PluginViewDialog - - - Plugin List - - - - - Ui_AmendThemeDialog - - - Transition Active: - - - - - Ui_BibleImportWizard - - - Proxy Server (Optional) - - - - - Ui_EditSongDialog - - - &Manage Authors, Topics, Books - - - - - Ui_OpenLPExportDialog - - - Ready to export - Klar for eksportering - - - ImageMediaItem - - - Images (*.jpg *.jpeg *.gif *.png *.bmp);; All files (*) - - - - - EditCustomForm - - - Save && Preview - - - - - Ui_OpenLPExportDialog - - - Select All - Merk alt - - - Ui_SongUsageDetailDialog - - - to - til - - - Ui_AmendThemeDialog - - - Size: - Størrelse: - - - MainWindow - - - OpenLP Main Display Blanked - - - - - Ui_OpenLPImportDialog - - - Remove Selected - - - - - OpenSongBible - - - Importing - - - - - ServiceManager - - - Move &up - - - - - ImportWizardForm - - - You need to specify an OpenSong Bible file to import. - - - - - Ui_MainWindow - - - Ctrl+S - Ctrl+S - - - PresentationMediaItem - - - File exists - Filen eksisterer - - - Ui_OpenSongImportDialog - - - Ready to import - - - - - SlideController - - - Stop continuous loop - + + SongSelect Password: + SongSelect-passord: - - s - + + primary + primær - - + + + Application Startup + Programoppstart + + + + Select monitor for output display: + Velg hvilken skjerm som skal brukes til fremvisning: + + + + Application Settings + Programinnstillinger + + + + SongSelect Username: + SongSelect-brukernavn: + + + + CCLI Number: + CCLI-nummer: + + + + Automatically open the last service + Åpne forrige møteplan automatisk + + + + Preview Next Song from Service Manager + Forhåndsvis neste sang i møteplanen + + + + Show blank screen warning + + + + + Prompt to save Service before starting New + + + + + General + + + + + Show the splash screen + + + + + Screen + + + + + Monitors + + + + + Display if a single screen + + + + ImagePlugin - - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> - + + <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> + - - - SongMediaItem + + + ImagePlugin.ImageTab - - Song Maintenance - + + Images + - - - Ui_customEditDialog - - Edit - + + Image Settings + Bildeinnstillinger - - - Ui_AmendThemeDialog - - Gradient : - + + Slide Loop Delay: + - - - BiblesTab - - Layout Style: - + + sec + sek - - - ImportWizardForm + + + ImagePlugin.MediaItem - - Invalid Verse File - + + Image + - - - EditSongForm - - Error - + + Select Image(s) + Velg bilde(r) - - - Ui_customEditDialog - - Add New - Legg til Ny - - - Ui_AuthorsDialog - - - Display name: - + + All Files + - - - SongMaintenanceForm - - Are you sure you want to delete the selected topic? - + + Replace Live Background + - - - Ui_AmendThemeDialog - - Bold/Italics - + + You must select an item to delete. + - - - Ui_SongMaintenanceDialog - - Song Maintenance - + + Image(s) + Bilde(r) - - - Ui_EditVerseDialog - - Bridge - + + You must select an item to process. + - - - SongsTab + + + LanguageManager - - Songs - Sanger - - - Ui_AmendThemeDialog - - - Preview - + + Language + - - - Ui_AboutDialog - - Credits - + + After restart new Language settings will be used. + - - + + + MainWindow + + + The Main Display has been blanked out + + + + + OpenLP Version Updated + OpenLP versjonen har blitt oppdatert + + + + Save Changes to Service? + Lagre endringer til møteplanen? + + + + OpenLP Main Display Blanked + + + + + OpenLP 2.0 + OpenLP 2.0 + + + + English + Norsk + + + + &File + &Fil + + + + &Import + &Import + + + + &Export + &Eksporter + + + + &View + &Vis + + + + M&ode + + + + + &Tools + + + + + &Settings + &Innstillinger + + + + &Language + &Språk + + + + &Help + &Hjelp + + + + Media Manager + Innholdselementer + + + + Service Manager + + + + + Theme Manager + + + + + &New + &Ny + + + + New Service + Ny møteplan + + + + Create a new service. + + + + + Ctrl+N + Ctrl+N + + + + &Open + &Åpne + + + + Open Service + Åpne møteplan + + + + Open an existing service. + + + + + Ctrl+O + Ctrl+O + + + + &Save + &Lagre + + + + Save Service + Lagre møte + + + + Save the current service to disk. + + + + + Ctrl+S + Ctrl+S + + + + Save &As... + + + + + Save Service As + + + + + Save the current service under a new name. + + + + + Ctrl+Shift+S + + + + + E&xit + &Avslutt + + + + Quit OpenLP + Avslutt OpenLP + + + + Alt+F4 + Alt+F4 + + + + &Theme + &Tema + + + + &Configure OpenLP... + + + + + &Media Manager + + + + + Toggle Media Manager + + + + + Toggle the visibility of the media manager. + + + + + F8 + F8 + + + + &Theme Manager + + + + + Toggle Theme Manager + Åpne tema-behandler + + + + Toggle the visibility of the theme manager. + + + + + F10 + F10 + + + + &Service Manager + + + + + Toggle Service Manager + Vis møteplanlegger + + + + Toggle the visibility of the service manager. + + + + + F9 + F9 + + + + &Preview Panel + &Forhåndsvisningspanel + + + + Toggle Preview Panel + Vis forhåndsvisningspanel + + + + Toggle the visibility of the preview panel. + + + + + F11 + F11 + + + + &Live Panel + + + + + Toggle Live Panel + + + + + Toggle the visibility of the live panel. + + + + + F12 + F12 + + + + &Plugin List + &Tillegsliste + + + + List the Plugins + Hent liste over tillegg + + + + Alt+F7 + ALT+F7 + + + + &User Guide + &Brukerveiledning + + + + &About + &Om + + + + More information about OpenLP + + + + + Ctrl+F1 + Ctrl+F1 + + + + &Online Help + + + + + &Web Site + &Internett side + + + + &Auto Detect + + + + + Use the system language, if available. + + + + + Set the interface language to %s + + + + + Add &Tool... + Legg til & Verktøy... + + + + Add an application to the list of tools. + + + + + &Default + + + + + Set the view mode back to the default. + + + + + &Setup + + + + + Set the view mode to Setup. + + + + + &Live + &Direkte + + + + Set the view mode to Live. + + + + + Version %s of OpenLP is now available for download (you are currently running version %s). + +You can download the latest version from http://openlp.org + + + + + Your service has changed. Do you want to save those changes? + + + + + Default Theme: %s + + + + MediaManagerItem - - Preview the selected item - + + You must select one or more items + Du må velge ett eller flere elementer - - - Ui_BibleImportWizard - - Version Name: - Versjons Navn: - - - Ui_AboutDialog - - - About - Om - - - Ui_EditVerseDialog - - - Ending - + + &Add to Service + &Legg til i møteplan - - - Ui_AmendThemeDialog - - Horizontal Align: - + + Send the selected item live + - - + + + Add the selected item(s) to the service + + + + + Delete the selected item + + + + + &Show Live + + + + + Preview the selected item + + + + + No Items Selected + + + + + Import %s + + + + + Import a %s + + + + + Load %s + + + + + Load a new %s + + + + + New %s + + + + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Preview %s + + + + + Add %s to Service + + + + + &Edit %s + + + + + &Delete %s + + + + + &Preview %s + + + + + &Add to selected Service Item + + + + + You must select one or more items to preview. + + + + + You must select one or more items to send live. + + + + + You must select one or more items. + + + + + No items selected + + + + + No Service Item Selected + + + + + You must select an existing service item to add to. + + + + + Invalid Service Item + + + + + You must select a %s service item. + + + + + MediaPlugin + + + <b>Media Plugin</b><br>This plugin allows the playing of audio and video media + <b>Media-tillegg</b><br> Dette tillegget spiller av lyd og video. + + + + MediaPlugin.MediaItem + + + Media + + + + + Select Media + Velg media + + + + Replace Live Background + + + + + You must select an item to delete. + + + + + OpenLP + + + Image Files + + + + + PluginForm + + + Plugin List + + + + + Plugin Details + + + + + Version: + + + + + TextLabel + + + + + About: + Om: + + + + Status: + Status: + + + + Active + Aktiv + + + + Inactive + + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + + + + + PresentationPlugin + + + <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + <b>Presentasjonstillegg</b> <br> Gir deg mulighet til å vise presentasjoner ved hjelp av en rekke ulike programmer. Programmene som er tilgjengelige finner du i rullemenyen. + + + + PresentationPlugin.MediaItem + + + Presentation + Presentasjon + + + + Select Presentation(s) + Velg presentasjon(er) + + + + Automatic + Automatisk + + + + Present using: + Presenter ved hjelp av: + + + + File exists + Filen eksisterer + + + + A presentation with that filename already exists. + + + + + You must select an item to delete. + + + + + PresentationPlugin.PresentationTab + + + Presentations + + + + + Available Controllers + + + + + available + + + + + RemotePlugin + + + <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer via a web browser or other app<br>The Primary use for this would be to send alerts from a creche + + + + + RemotePlugin.RemoteTab + + + Remotes + Fjernmeldinger + + + + Remotes Receiver Port + + + + + ServiceItemEditForm + + + Service Item Maintenance + + + + + Up + + + + + Delete + + + + + Down + + + + ServiceManager - - &Edit Item - + + Save Service + Lagre møte - - - Ui_AmendThemeDialog - - Background Type: - + + Save Changes to Service? + Lagre endringer til møteplanen? - - - Ui_MainWindow - - &Save - &Lagre + + Open Service + Åpne møteplan + - - OpenLP 2.0 - OpenLP 2.0 - - + + 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 + + + Settings + Innstillinger + + + + 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 + + + &Delete recorded data + &Slett lagret data + + + + Start/Stop live song usage recording + + + + + <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service + + + + + Delete song usage to specified date + Slett data angående sangbruk frem til angitt dato + + + + Generate report on Song Usage + Lag rapport angående bruk av sanger + + + + Song Usage Status + + + + + &Extract recorded data + + + + + &Song Usage + + + + + SongsPlugin + + + &Song + &Sang + + + + Import songs using the import wizard. + + + + + Songs of Fellowship (temp menu item) + + + + + Import songs from the VOLS1_2.RTF, sof3words.rtf and sof4words.rtf supplied with the music books + + + + + Generic Document/Presentation Import (temp menu item) + + + + + Import songs from Word/Writer/Powerpoint/Impress + + + + + Open Songs of Fellowship file + + + + + Import Error + + + + + Error importing Songs of Fellowship file. +OpenOffice.org must be installed and you must be using an unedited copy of the RTF included with the Songs of Fellowship Music Editions + + + + + Open documents or presentations + + + + + <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + + + + + 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 + + + Author Maintenance + Behandle forfatterdata + + + + Display name: + + + + + First name: + Fornavn: + + + + Last name: + Etternavn: + + + + Error + Feil + + + + You need to type in the first name of the author. + Du må skrive inn forfatterens fornavn. + + + + You need to type in the last name of the author. + + + + + You haven't set a display name for the author, would you like me to combine the first and last names for you? + Du har ikke angitt et visningsnavn for forfatteren, vil du bruke forfatterens fulle navn som visningsnavn? + + + + SongsPlugin.EditSongForm + + + Song Editor + Sangredigeringsverktøy + + + + &Title: + + + + + Alt&ernate Title: + + + + + &Lyrics: + + + + + &Verse Order: + + + + + &Add + + + + + &Edit + &Rediger + + + + Ed&it All + + + + + &Delete + + + + + Title && Lyrics + Tittel && Sangtekst + + + + Authors + + + + + &Add to Song + + + + + &Remove + &Fjern + + + + &Manage Authors, Topics, Books + + + + + Topic + Emne + + + + A&dd to Song + + + + + R&emove + &Fjern + + + + Song Book + + + + + Authors, Topics && Book + Forfatter, Emne && Bok + + + + Theme + Tema + + + + New &Theme + + + + + Copyright Information + Copyright-informasjon + + + + © + + + + + CCLI Number: + CCLI-nummer: + + + + Comments + + + + + Theme, Copyright Info && Comments + + + + + Save && Preview + + + + + Add Author + + + + + This author does not exist, do you want to add them? + + + + + 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? + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + Rediger Vers + + + + &Verse type: + + + + + &Insert + + + + + SongsPlugin.ImportWizardForm + + + No OpenLyrics Files Selected + + + + + You need to add at least one OpenLyrics song file to import from. + + + + + No OpenSong Files Selected + + + + + You need to add at least one OpenSong song file to import from. + + + + + No CCLI Files Selected + + + + + You need to add at least one CCLI file to import from. + + + + + No CSV File Selected + + + + + You need to specify a CSV file to import from. + + + + + Starting import... + + + + + Song Import Wizard + + + + + Welcome to the Song Import Wizard + + + + + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. + + + + + Select Import Source + Velg importeringskilde + + + + Select the import format, and where to import from. + + + + + Format: + Format: + + + + OpenLyrics + + + + + OpenSong + OpenSong + + + + CCLI + + + + + CSV + + + + + Add Files... + + + + + Remove File(s) + + + + + Filename: + + + + + Browse... + + + + + Importing + + + + + Please wait while your songs are imported. + + + + + Ready. + Klar. + + + + %p% + + + + + SongsPlugin.MediaItem + + + Song + Sang + + + + Song Maintenance + + + + + Maintain the lists of authors, topics and books + Rediger liste over forfattere, emner og bøker. + + + + Search: + Søk: + + + + Type: + Type: + + + + Clear + + + + + Search + Søk + + + + Titles + Titler + + + + Lyrics + + + + + Authors + + + + + %s (%s) + + + + + You must select an item to edit. + + + + + You must select an item to delete. + + + + + Delete song? + + + + + Delete %d songs? + + + + + Delete Confirmation + + + + + CCLI Licence: + CCLI lisens: + + + + SongsPlugin.SongBookForm + + + Edit Book + Rediger bok + + + + &Name: + + + + + &Publisher: + + + + + Error + Feil + + + + You need to type in a name for the book. + + + + + SongsPlugin.SongImport + + + copyright + + + + + © + + + + + SongsPlugin.SongMaintenanceForm + + + Song Maintenance + + + + + Authors + + + + + Topics + Emne + + + + Books/Hymnals + + + + + &Add + + + + + &Edit + &Rediger + + + + &Delete + + + + + Error + Feil + + + + Couldn't add your author. + Kunne ikke legge til forfatteren. + + + + Couldn't add your topic. + Kunne ikke legge til emnet. + + + + Couldn't add your book. + Kunne ikke legge til boken. + + + + Couldn't save your author. + Kunne ikke lagre forfatteren + + + + Couldn't save your topic. + Kunne ikke lagre emnet. + + + + Couldn't save your book. + + + + + 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 can't be deleted, they are currently assigned to at least one song. + Denne forfatteren kan ikke slettes, den er knyttet til minst én sang. + + + + No author selected! + Ingen forfatter er valgt! + + + + Delete Topic + Slett emne + + + + Are you sure you want to delete the selected topic? + + + + + This topic can't 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 can't be deleted, it is currently assigned to at least one song. + Denne boken kan ikke slettes, den er tilknyttet minst én sang. + + + + 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 + + + Songs + Sanger + + + + Songs Mode + + + + + Enable search as you type + + + + + Display Verses on Live Tool bar + + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + + + + + Topic name: + Emnenavn: + + + + Error + Feil + + + + You need to type in a topic name! + Skriv inn et emnenavn! + + + + Splashscreen + + + Starting + + + + + Splash Screen + + + + ThemeManager - - A theme with this name already exists, would you like to overwrite it? - + + Import Theme + Importer tema - - Export a theme - Eksporter tema - - - AmendThemeForm - - - Open file - Åpne fil - - - Ui_TopicsDialog - - - Topic Maintenance - + + Delete Theme + Slett tema - - - Ui_customEditDialog - - Clear edit area - + + Error + Feil - - - Ui_AmendThemeDialog - - Show Outline: - + + Edit Theme + Endre tema - - - ServiceManager - - Move to &bottom - + + Export Theme + Eksporter tema - - - SongBookForm - - You need to type in a book name! - + + You are unable to delete the default theme. + Du kan ikke slette det globale temaet - - - ImportWizardForm - - Open OpenSong Bible - + + File is not a valid theme. + Filen er ikke et gyldig tema. - - - Ui_MainWindow - - Look && &Feel - + + Theme Exists + Temaet eksisterer - - - Ui_BibleImportWizard - - Ready. - Klar. - - - Ui_SongMaintenanceDialog - - - Books/Hymnals - + + Save Theme - (%s) + - - - Ui_AboutDialog - - Contribute - + + Select Theme Import File + - - - Ui_AmendThemeDialog - - Gradient - + + New Theme + - - - AlertsTab - - Font Size: - + + You have not selected a theme. + - - - Ui_OpenSongExportDialog - - Full Song List - + + Create a new theme. + - - - BibleMediaItem - - Bible not fully loaded - + + Edit a theme. + - - + + + Delete a theme. + + + + + Import a theme. + + + + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Theme (*.*) + + + + + File is not a valid theme. +The content encoding is not UTF-8. + + + + + A theme with this name already exists. Would you like to overwrite it? + + + + + ThemesTab + + + Use the global theme, overriding any themes associated with either the service or the songs. + Bruk det globale temaet, og la det overstyre eventuelle tema som er tilknyttet møteplaner eller sanger. + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Bruk temaet fra hver sang i databasen. Hvis en sang ikke er tilknyttet et tema, bruk temaet til møteplanen. Hvis møteplanen ikke har et tema, bruk det globale temaet. + + + + Themes + Tema + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + &Service Level + + + + + &Global Level + + + + + VerseType + + + Verse + Vers + + + + Chorus + + + + + Bridge + + + + + Pre-Chorus + Pre-Chorus + + + + Intro + + + + + Ending + + + + + Other + Annet + + diff --git a/resources/i18n/openlp_pt_BR.ts b/resources/i18n/openlp_pt_BR.ts index 991c027d0..9c3179024 100644 --- a/resources/i18n/openlp_pt_BR.ts +++ b/resources/i18n/openlp_pt_BR.ts @@ -1,4254 +1,3775 @@ - - - - BibleMediaItem - - - Quick - Rápido - - - Ui_customEditDialog - - - Delete selected slide - Deletar slide selecionado - - - BiblesTab - - - ( and ) - ( e ) - - - RemoteTab - - - Remotes - Remoto - - - Ui_EditSongDialog - - - &Remove - &Remover - - - Ui_AmendThemeDialog - - - Shadow Size: - Tamanho da sombra: - - - Ui_OpenSongExportDialog - - - Close - Fechar - - - ThemeManager - - - Import Theme - Importar Tema - - - Ui_AmendThemeDialog - - - Slide Transition - Transição do Slide - - - SongMaintenanceForm - - - Are you sure you want to delete the selected book? - Você tem certeza que deseja deletar o livro selecionado? - - - ThemesTab - - - Theme level - Nível do Tema - - - BibleMediaItem - - - Bible - Bíblia - - - ServiceManager - - - Save Changes to Service? - Salvar Mudanças no Culto? - - - SongUsagePlugin - - - &Delete recorded data - &Deletar dados armazenados - - - Ui_OpenLPExportDialog - - - Song Title - Título da Música - - - Ui_customEditDialog - - - Edit selected slide - Editar slide selecionado - - - SongMediaItem - - - CCLI Licence: - Licença CCLI: - - - Ui_SongUsageDeleteDialog - - - Audit Delete - Deletar Auditoria - - - Ui_BibleImportWizard - - - Bible Import Wizard - Assistente de Importação da Bíblia - - - Ui_customEditDialog - - - Edit All - Editar Todos - - - Ui_ServiceNoteEdit - - - Service Item Notes - Item de Notas de Culto - - - SongMaintenanceForm - - - Couldn't save your author! - Não foi possível salvar seu autor! - - - Ui_customEditDialog - - - Clear - Limpar - - - ThemesTab - - - Global theme - Tema global - - - SongUsagePlugin - - - Start/Stop live song usage recording - Iniciar/Parar registro do uso de músicas - - - MainWindow - - - The Main Display has been blanked out - A Tela Principal foi apagada - - - Ui_OpenSongExportDialog - - - Lyrics - Letras - - - Ui_AlertDialog - - - Display - Tela - - - Ui_customEditDialog - - - Delete - Deletar - - - Ui_EditVerseDialog - - - Verse - Versículo - - - SongMaintenanceForm - - - This author can't be deleted, they are currently assigned to at least one song! - Este autor não pode ser deletado. Ele está atualmente cadastrado em pelo menos uma música! - - - ThemeManager - - - Create a new theme - Criar um novo tema - - - Ui_MainWindow - - - Open an existing service - Abrir um culto existente - - - SlideController - - - Move to previous - Mover para o anterior - - - SongsPlugin - - - &Song - &Música - - - Ui_PluginViewDialog - - - Plugin Details - Detalhes do Plugin - - - AlertsTab - - - pt - pt - - - Edit History: - Editar Histórico: - - - Ui_MainWindow - - - &File - &Arquivo - - - SongMaintenanceForm - - - Couldn't add your book! - Não foi possível adicionar o seu livro! - - - BiblesTab - - - verse per line - versículo por linhaVerificar se é necessário colocar versículo no plural - - - Ui_customEditDialog - - - Theme: - Tema: - - - SongMaintenanceForm - - - Error - Erro - - - Ui_BibleImportWizard - - - Bible: - Bíblia: - - - ImportWizardForm - - - You need to specify a file with books of the Bible to use in the import! - Você precisa especificar um arquivo com os livros da Bíblia para usar a importação! - - - ThemeManager - - - Delete Theme - Deletar Tema - - - SplashScreen - - - Splash Screen - Tela InicialVerificar se é a melhor tradução. - - - SongMediaItem - - - Song - Música - - - SongUsageDeleteForm - - - Delete Selected Audit Events? - Deletar Eventos de Auditoria Selecionados? - - - Ui_OpenSongExportDialog - - - Song Title - Título da Música - - - Ui_AmendThemeDialog - - - Bottom - Rodapé - - - Ui_MainWindow - - - List the Plugins - Listar os Plugins - - - SongMaintenanceForm - - - No author selected! - Nenhum autor selecionado! - - - SongUsagePlugin - - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - <b>Plugin de Uso das Músicas</b><br>Este plugin registra o uso das músicas e quando elas foram usadas durante um culto - - - Ui_customEditDialog - - - Move slide Up 1 - Mover slide para cima 1Verificar o uso do 1 - - - SongsPlugin - - - OpenSong - OpenSong - - - AlertsManager - - - Alert message created and delayed - Mensagem de alerta criada e atrasada - - - Ui_EditSongDialog - - - Alternative Title: - Título Alternativo: - - - ServiceManager - - - Open Service - Abrir Culto - - - BiblesTab - - - Display Style: - Estilo de Exibição: - - - Ui_AmendThemeDialog - - - Image - Imagem - - - EditSongForm - - - You need to enter a song title. - Você precisa digitar um título para a música. - - - ThemeManager - - - Error - Erro - - - ImportWizardForm - - - Invalid Bible Location - Localização da Bíblia Inválida - - - ThemesTab - - - Global level - Nível Global - - - ThemeManager - - - Make Global - Tornar Global - - - Ui_MainWindow - - - &Service Manager - &Gerenciador de Culto - - - Ui_OpenLPImportDialog - - - Author - Autor - - - Ui_AmendThemeDialog - - - Height: - Altura: - - - ThemeManager - - - Delete a theme - Deletar um tema - - - Ui_BibleImportWizard - - - Crosswalk - Crosswalk - - - SongBookForm - - - Error - Erro - - - Ui_AuthorsDialog - - - Last name: - Sobrenome: - - - Ui_customEditDialog - - - Title: - Título: - - - ImportWizardForm - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - Você precisa definir um direito autoral para a sua Bíblia! Bíblias em Domínio Público necessitam ser marcadas como tal. - - - SongMediaItem - - - Maintain the lists of authors, topics and books - Gerenciar as listas de autores, tópicos e livros - - - Ui_AlertEditDialog - - - Save - Salvar - - - EditCustomForm - - - You have unsaved data - Você possui dados não gravados - - - Ui_AmendThemeDialog - - - Outline - Esboço - - - BibleMediaItem - - - Text Search - Busca de Texto - - - Ui_BibleImportWizard - - - CSV - CSV - - - SongUsagePlugin - - - Delete song usage to specified date - Deletar uso da música para a data especificada - - - Ui_SongUsageDetailDialog - - - Report Location - Localização do Relatório - - - Ui_BibleImportWizard - - - OpenSong - OpenSong - - - Ui_MainWindow - - - Open Service - Culto Aberto - - - BibleMediaItem - - - Find: - Buscar: - - - ImageMediaItem - - - Select Image(s) - Selecionar Imagem(s)verificar o uso do (s) - - - BibleMediaItem - - - Search Type: - Tipo de Busca: - - - Ui_MainWindow - - - Media Manager - Gerenciador de Mídia - - - Alt+F4 - Alt+F4 - - - MediaManagerItem - - - &Preview - &Pré-Visualização - - - GeneralTab - - - CCLI Details - Detalhes de CCLI - - - BibleMediaItem - - - Bible not fully loaded - Bíblia não carregada completamente - - - Ui_MainWindow - - - Toggle the visibility of the Preview Panel - Alternar a visibilidade do Painel de Pré-Visualização - - - ImportWizardForm - - - Bible Exists - Bíblia Existe - - - Ui_MainWindow - - - &User Guide - &Guia do Usuário - - - SongUsageDeleteForm - - - Are you sure you want to delete selected Audit Data? - Você tem certeza que deseja deletar o Registro de Auditoria selecionado? - - - Ui_MainWindow - - - Set the interface language to English - Definir a linguagem da interface para Inglês - - - Ui_AmendThemeDialog - - - Main Font - Fonte Principal - - - ImportWizardForm - - - Empty Copyright - Limpar Direito Autoral - - - CustomPlugin - - - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> - <b>Plugin Customizado</b><br>Este plugin permite que slides sejam exibidos na tela da mesma maneira que as músicas. Este plugin fornece uma grande liberdade sobre o plugin de músicas.<br> - - - AuthorsForm - - - You need to type in the first name of the author. - Você precisa digitar o primeiro nome do autor. - - - SongsTab - - - Display Verses on Live Tool bar: - Exibir Versículos na Barra Ao Vivo:Verificar contexto. - - - ServiceManager - - - Move to top - Mover para o topo - - - ImageMediaItem - - - Override background - Sobrescrever fundo de tela - - - Ui_SongMaintenanceDialog - - - Edit - Editar - - - Ui_OpenSongExportDialog - - - Select All - Selecionar Tudo - - - ThemesTab - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - Use o tema de cada música na base de dados. Se uma música não tiver um tema associado com ela, então use o tema do culto. Se o culto não tiver um tema, então use o tema global. - - - PresentationMediaItem - - - Presentation - Apresentação - - - Ui_AmendThemeDialog - - - Solid Color - Cor Sólida - - - CustomTab - - - Custom - Customizado - - - Ui_OpenLPImportDialog - - - Ready to import - Pronto para a importação - - - MainWindow - - - OpenLP version %s has been updated to version %s - -You can obtain the latest version from http://openlp.org - A versão do OpenLP %s foi atualizada para a versão %s - -Você pode obter a última versão no site http://openlp.org - - - Ui_BibleImportWizard - - - File Location: - Localização do Arquivo: - - - SlideController - - - Go to Verse - Ir ao Versículo - - - Ui_MainWindow - - - &Import - &Importar - - - Quit OpenLP - Fechar o OpenLP - - - Ui_BibleImportWizard - - - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - Este assistente irá ajudá-lo a importar Bíblias de uma variedade de formatos. Clique no botão próximo abaixo para comecar o processo selecionando o formato a ser importado. - - - SongMaintenanceForm - - - Couldn't add your topic! - Não foi possível adicionar o seu tópico! - - - ImportWizardForm - - - Empty Version Name - Nome da Versão Vazio - - - Ui_MainWindow - - - &Preview Panel - &Painel de Pré-Visualização - - - SlideController - - - Start continuous loop - Iniciar repetição contínua - - - ServiceManager - - - Move down - Mover para baixo - - - GeneralTab - - - primary - principal - - - Ui_EditSongDialog - - - Add a Theme - Adicionar um Tema - - - Ui_MainWindow - - - &New - &Novo - - - Ui_customEditDialog - - - Credits: - Créditos: - - - SlideController - - - Live - Ao Vivo - - - GeneralTab - - - Show blank screen warning - Exibir alerta de tela em branco - - - BiblesTab - - - continuous - continuamente - - - Ui_EditVerseDialog - - - Number - Número - - - GeneralTab - - - Application Startup - Inicialização da Aplicação - - - Ui_AmendThemeDialog - - - Use Default Location: - Usar Localização Padrão: - - - Ui_OpenSongImportDialog - - - Import - Importar - - - Ui_AmendThemeDialog - - - Other Options - Outras Opções - - - Ui_EditSongDialog - - - Verse Order: - Ordem dos Versículos: - - - Ui_SongUsageDetailDialog - - - ASelect Date Range - Selecione o Intervalo de Data - - - Ui_MainWindow - - - Default Theme: - Tema Padrão: - - - Toggle Preview Panel - Alternar para Painel de Pré-Visualização - - - SongMediaItem - - - Lyrics - Letras - - - Ui_OpenLPImportDialog - - - Progress: - Progresso: - - - Ui_AmendThemeDialog - - - Shadow - Sombra - - - GeneralTab - - - Select monitor for output display: - Selecione um monitor para exibição: - - - Ui_MainWindow - - - &Settings - &Configurações - - - Ui_AmendThemeDialog - - - Italics - Itálico - - - ServiceManager - - - Create a new service - Criar um novo culto - - - Ui_AmendThemeDialog - - - Background: - Tela de Fundo: - - - Ui_OpenLPImportDialog - - - openlp.org Song Importer - Importador de Músicas openlp.org - - - Ui_BibleImportWizard - - - Copyright: - Direito Autoral: - - - ThemesTab - - - Service level - Nível do Serviço - - - BiblesTab - - - [ and ] - [ e ] - - - Ui_BibleImportWizard - - - Verse Location: - Localização do Versículo: - - - MediaManagerItem - - - You must select one or more items - Você precisa selecionar um ou mais itens - - - GeneralTab - - - Application Settings - Configurações da Aplicação - - - ServiceManager - - - Save this service - Salvar este culto - - - ImportWizardForm - - - Open Books CSV file - Abrir arquivo CSV de Livros - - - GeneralTab - - - SongSelect Username: - Usuário do SongSelect: - - - Ui_AmendThemeDialog - - - X Position: - Posição X: - - - BibleMediaItem - - - No matching book could be found in this Bible. - Nenhum livro foi encontrado nesta Bíblia - - - Ui_BibleImportWizard - - - Server: - Servidor: - - - SongMaintenanceForm - - - Couldn't save your book! - Não foi possível salver o seu livro! - - - Ui_EditVerseDialog - - - Ending - Terminando - - - CustomTab - - - Display Footer: - Exibir Rodapé: - - - ImportWizardForm - - - Invalid OpenSong Bible - Bíblia do OpenSong Inválida - - - GeneralTab - - - CCLI Number: - Número CCLI: - - - Ui_AmendThemeDialog - - - Center - Centralizar - - - ServiceManager - - - Theme: - Tema: - - - Ui_MainWindow - - - &Live - &Ao Vivo - - - Ui_AmendThemeDialog - - - <Color2> - <Color2> - - - Ui_MainWindow - - - English - Inglês - - - ImageMediaItem - - - You must select one or more items - Você precisa selecionar um ou mais itens - - - Ui_AuthorsDialog - - - First name: - Primeiro Nome: - - - Ui_OpenLPExportDialog - - - Select openlp.org export filename: - Selecione um nome de arquivo do tipo openlp.org para exportação: - - - Ui_BibleImportWizard - - - Permission: - Permissão: - - - Ui_OpenSongImportDialog - - - Close - Fechar - - - Ui_AmendThemeDialog - - - Opaque - Opaco - - - SongMaintenanceForm - - - This book can't be deleted, it is currently assigned to at least one song! - Este livro não pode ser deletado pois está atribuída para pelo meno uma música! - - - ImportWizardForm - - - Your Bible import failed. - A sua Importação da Bíblia falhou. - - - SlideController - - - Start playing media - Iniciar a reprodução de mídia - - - SongMediaItem - - - Type: - Tipo: - - - Ui_AboutDialog - - - Close - Fechar - - - TopicsForm - - - You need to type in a topic name! - Você precisa digitar um nome para o tópico! - - - Ui_OpenSongExportDialog - - - Song Export List - Lista de Exportação de Músicas - - - BibleMediaItem - - - Dual: - Duplo: - - - ImageTab - - - sec - seg - - - ServiceManager - - - Delete From Service - Deletar do Culto - - - GeneralTab - - - Automatically open the last service - Abrir o último culto automaticamente - - - Ui_OpenLPImportDialog - - - Song Import List - Lista de Importação de Músicas - - - Ui_OpenSongExportDialog - - - Author - Autor - - - Ui_AmendThemeDialog - - - Outline Color: - Cor do Esboço: - - - Ui_BibleImportWizard - - - Select Import Source - Selecionar Origem da Importação - - - Ui_MainWindow - - - F9 - F9 - - - F8 - F8 - - - ServiceManager - - - &Change Item Theme - &Alterar Tema do Item - - - Ui_OpenSongImportDialog - - - OpenSong Folder: - Diretório do OpenSong: - - - Ui_OpenLPImportDialog - - - Import File Song List - Importar Arquivo com Lista de Músicas - - - Ui_customEditDialog - - - Edit Custom Slides - Editar Slides Customizados - - - Ui_BibleImportWizard - - - Set up the Bible's license details. - Configurar detalhes de licença da Bíblia. - - - Ui_AmendThemeDialog - - - Alignment - Alinhamento - - - SongMaintenanceForm - - - Delete Book - Deletar Livro - - - ThemeManager - - - Edit a theme - Editar um tema - - - Ui_BibleImportWizard - - - BibleGateway - BibleGateway - - - GeneralTab - - - Preview Next Song from Service Manager - Pré-Visualizar Próxima Música do Gerenciamento de Culto - - - Ui_EditSongDialog - - - Title && Lyrics - Título && Letras - - - SongMaintenanceForm - - - No book selected! - Nenhum livro selecionado! - - - SlideController - - - Move to live - Mover para ao vivo - - - Ui_EditVerseDialog - - - Other - Outro - - - Ui_EditSongDialog - - - Theme - Tema - - - ServiceManager - - - Save Service - Salvar Culto - - - Ui_MainWindow - - - Save the current service to disk - Salvar o culto atual no disco - - - BibleMediaItem - - - Chapter: - Capítulo: - - - Search - Buscar - - - PresentationTab - - - Available Controllers - Controladores Disponíveis - - - ImportWizardForm - - - Open Verses CSV file - Abrir arquivo CSV de Versículos - - - TopicsForm - - - Error - Erro - - - RemoteTab - - - Remotes Receiver Port - Porta Recebedora Remota - - - Ui_MainWindow - - - &View - &Visualizar - - - Ui_AmendThemeDialog - - - Normal - Normal - - - Ui_OpenLPExportDialog - - - Close - Fechar - - - Ui_BibleImportWizard - - - Username: - Nome de Usuário: - - - ThemeManager - - - Edit Theme - Editar Tema - - - SlideController - - - Preview - Pré-Visualizar - - - Ui_AlertDialog - - - Alert Message - Mensagem de Alerta - - - ImportWizardForm - - - Finished import. - Importação Finalizada. - - - You need to specify a file of Bible verses to import! - Você precisa especificar um arquivo de versículos da Bíblia para importar! - - - AlertsTab - - - Location: - Localização: - - - Ui_EditSongDialog - - - Authors, Topics && Book - Autores, Tópicos && Livro - - - EditSongForm - - - You need to enter some verses. - Você precisa inserir alguns versículos. - - - Ui_BibleImportWizard - - - Download Options - Opções de Download - - - BiblePlugin - - - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - <strong>Plugin da Bíblia</strong>Este plugin permite exibir na tela versículos bíblicos de diferentes versões durante o culto. - - - Ui_EditSongDialog - - - Copyright Information - Informação de Direitos Autorais - - - Ui_MainWindow - - - &Export - &Exportar - - - Ui_AmendThemeDialog - - - Bold - Negrito - - - SongsPlugin - - - Export songs in OpenLP 2.0 format - Exportar músicas no formato OpenLP 2.0 - - - MediaManagerItem - - - Load a new - Carregar um novo - - - AlertEditForm - - - Missing data - Dados Faltando - - - SongsPlugin - - - <b>Song Plugin</b> <br>This plugin allows Songs to be managed and displayed.<br> - <b>Plugin de Músicas</b> <br>Este plugin permite que Músicas sejam gerenciadas e exibidas.<br> - - - Ui_AmendThemeDialog - - - Footer Font - Fonte do Rodapé - - - EditSongForm - - - Invalid verse entry - vX - Entrada de versículo inválida - vX - - - MediaManagerItem - - - Delete the selected item - Deletar o item selecionado - - - Ui_OpenLPExportDialog - - - Export - Exportar - - - Ui_BibleImportWizard - - - Location: - Localização: - - - BibleMediaItem - - - Keep - Manter - - - SongUsagePlugin - - - Generate report on Song Usage - Gerar relatório de Uso das Músicas - - - Ui_EditSongDialog - - - Topic - Tópico - - - Ui_MainWindow - - - &Open - &Abrir - - - AuthorsForm - - - You haven't set a display name for the author, would you like me to combine the first and last names for you? - Você não configurou um nome de exibição para o autor. Você quer que eu combine o primeiro e ultimo nomes para você? - - - AmendThemeForm - - - Slide Height is %s rows - A Altura do Slide é de %s linhas - - - Ui_EditVerseDialog - - - Pre-Chorus - Pré-Refrão - - - Ui_EditSongDialog - - - Lyrics: - Letras: - - - Ui_AboutDialog - - - Project Lead - Raoul "superfly" Snyman - -Developers - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Testers - Wesley "wrst" Stout - Líder do Projeto - Raoul "superfly" Snyman - -Desenvolvedores - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Testadores - Wesley "wrst" Stout - - - SongMediaItem - - - Titles - Títulos - - - Ui_OpenLPExportDialog - - - Lyrics - Letras - - - PresentationMediaItem - - - Present using: - Apresentar usando: - - - SongMediaItem - - - Clear - Limpar - - - ServiceManager - - - &Live Verse - &Versículo Ao Vivo - - - Ui_OpenSongImportDialog - - - Progress: - Progresso: - - - Ui_MainWindow - - - Toggle Theme Manager - Alternar para Gerenciamento de Temas - - - Ui_AlertDialog - - - Alert Text: - Texto de Alerta: - - - Ui_EditSongDialog - - - Edit - Editar - - - AlertsTab - - - Font Color: - Cor da Fonte: - - - Ui_AmendThemeDialog - - - Theme Maintenance - Manutenção do Tema - - - CustomTab - - - Custom Display - Exibição Customizada - - - Ui_OpenSongExportDialog - - - Title - Título - - - Ui_AmendThemeDialog - - - <Color1> - <Color1> - - - Ui_EditSongDialog - - - Authors - Autores - - - ThemeManager - - - Export Theme - Exportar Tema - - - ServiceManager - - - (N) - (N) - - - Ui_SongBookDialog - - - Name: - Nome: - - - Ui_AuthorsDialog - - - Author Maintenance - Manutenção de Autores - - - Ui_AmendThemeDialog - - - Font Footer - Fonte do Rodapé - - - BiblesTab - - - Verse Display - Exibição do Versículo - - - Ui_MainWindow - - - &Options - &Opções - - - BibleMediaItem - - - Results: - Resultados: - - - Ui_OpenLPExportDialog - - - Full Song List - Lista de Músicas Completa - - - SlideController - - - Move to last - Mover para o último - - - Ui_OpenLPExportDialog - - - Progress: - Progresso: - - - Ui_SongMaintenanceDialog - - - Add - Adicionar - - - SongMaintenanceForm - - - Are you sure you want to delete the selected author? - Você tem certeza que deseja deletar o autor selecionado? - - - SongUsagePlugin - - - Song Usage Status - Status de Uso das Músicas - - - BibleMediaItem - - - Verse Search - Busca de Versículos - - - Ui_SongBookDialog - - - Edit Book - Editar Livro - - - EditSongForm - - - Save && Preview - Salvar && Pré-Visualizar - - - Ui_SongBookDialog - - - Publisher: - Editor: - - - Ui_AmendThemeDialog - - - Font Weight: - Tamanho da Fonte: - - - Ui_BibleImportWizard - - - Bible Filename: - Nome de Arquivo da Bíblia: - - - Ui_AmendThemeDialog - - - Transparent - Transparente - - - SongMediaItem - - - Search - Buscar - - - Ui_BibleImportWizard - - - Format: - Formato: - - - Ui_AmendThemeDialog - - - Background - Plano de Fundo - - - Ui_BibleImportWizard - - - Importing - Importando - - - Ui_customEditDialog - - - Edit all slides - Editar todos os slides - - - SongsTab - - - Enable search as you type: - Habilitar busca ao digitar: - - - Ui_MainWindow - - - Ctrl+S - Ctrl+S - - - SongMediaItem - - - Authors - Autores - - - Ui_PluginViewDialog - - - Active - Ativo - - - SongMaintenanceForm - - - Couldn't save your topic! - Não foi possível salvar o seu tópico! - - - Ui_MainWindow - - - Ctrl+O - Ctrl+O - - - Ctrl+N - Ctrl+N - - - SongMaintenanceForm - - - Couldn't add your author! - Não foi possível adicionar o seu autor! - - - Ui_AlertEditDialog - - - Edit - Editar - - - Ui_EditSongDialog - - - Song Editor - Editor de Músicas - - - AlertsTab - - - Font - Fonte - - - SlideController - - - Edit and re-preview Song - Editar e pré-visualizar Música novamente - - - Delay between slides in seconds - Intervalo entre slides em segundos - - - MediaManagerItem - - - &Edit - &Editar - - - Ui_AmendThemeDialog - - - Vertical - Vertical - - - Width: - Largura: - - - ThemeManager - - - You are unable to delete the default theme! - Você não pode deletar o tema padrão! - - - ThemesTab - - - Use the global theme, overriding any themes associated with either the service or the songs. - Usar o tema global, sobrescrevendo qualquer tema associado com cultos ou músicas. - - - BibleMediaItem - - - Version: - Versão: - - - Ui_AboutDialog - - - OpenLP <version> build <revision> - Open Source Lyrics Projection + + + + AboutForm + + + About OpenLP + Sobre o OpenLP + + + + OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version> build <revision> - Projeção de Letras em Código Aberto + + + + + About + Sobre + + + + Project Lead + Raoul "superfly" Snyman -OpenLP é um software livre de apresentação para igrejas (software de projeção de letras de música) usado para exibir slides de músicas, versículos da Bíblia, vídeos, imagens e até apresentações (se o OpenOffice.org, PowerPoint ou PowerPoint Viewer estiver instalado) para o culto da igreja utilizando um computador e um projetor. +Developers + Tim "TRB143" Bentley + Jonathan "gushie" Corwin + Michael "cocooncrash" Gorven + Scott "sguerrieri" Guerrieri + Raoul "superfly" Snyman + Martin "mijiti" Thompson + Jon "Meths" Tibble -Encontre mais sobre o OpenLP: http://openlp.org/ +Contributors + Meinert "m2j" Jordan + Christian "crichter" Richter + Maikel Stuivenberg + Carsten "catini" Tingaard -OpenLP é escrito e mantido por voluntários. Se você quiser ver mais softwares livres sendo escritos, por favor considere contribuir utilizando o botão abaixo. - - - SongsPlugin +Testers + Philip "Phill" Ridout + Wesley "wrst" Stout (lead) + +Packagers + Thomas "tabthorpe" Abthorpe (FreeBSD) + Tim "TRB143" Bentley (Fedora) + Michael "cocooncrash" Gorven (Ubuntu) + Matthias "matthub" Hub (Mac OS X) + Raoul "superfly" Snyman (Windows) + + + - - OpenLP 2.0 - OpenLP 2.0 - - - ServiceManager + + Credits + Créditos + - - New Service - Novo Culto - - - Ui_TopicsDialog + + Copyright © 2004-2010 Raoul Snyman +Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard + +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. + + +GNU GENERAL PUBLIC LICENSE +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification follow. + +GNU GENERAL PUBLIC LICENSE +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: + +a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. + +b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. + +c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. + +3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: + +a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. + +This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version', you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. + +<one line to give the program's name and a brief idea of what it does.> +Copyright (C) <year> <name of author> + +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it starts in an interactive mode: + +Gnomovision version 69, Copyright (C) year name of author +Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type "show w". +This is free software, and you are welcome to redistribute it under certain conditions; type "show c" for details. + +The hypothetical commands "show w" and "show c" should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than "show w" and "show c"; they could even be mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: + +Yoyodyne, Inc., hereby disclaims all copyright interest in the program "Gnomovision" (which makes passes at compilers) written by James Hacker. + +<signature of Ty Coon>, 1 April 1989 +Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. + + - - Topic name: - Nome do tópico: - - - ThemeManager + + License + Licença + - - File is not a valid theme! - O arquivo não é um tema válido! - - - Ui_BibleImportWizard + + Contribute + Contribuir + - - License Details - Detalhes da Licença - - - Ui_AboutDialog + + Close + Fechar + - - License - Licença - - - Ui_EditSongDialog + + build %s + + + + + AlertsPlugin - - R&emove - R&emover - - - Ui_AmendThemeDialog + + &Alert + &Alerta + - - Middle - Meio - - - Ui_customEditDialog + + <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen + <b>Plugin de Alertas</b><br>Este plugin controla a exibição de alertas na tela de apresentação + - - Save - Salvar - - - AlertEditForm + + Show an alert message. + + + + + AlertsPlugin.AlertForm - - Item selected to Edit - Item selecionado para Edição - - - BibleMediaItem + + Alert Message + Mensagem de Alerta + - - From: - De: - - - Ui_AmendThemeDialog + + Alert &text: + + - - Shadow Color: - Cor da Sombra: - - - ServiceManager + + &Parameter(s): + + - - &Notes - &Notas - - - Ui_MainWindow + + &New + &Novo + - - E&xit - S&air - - - Ui_OpenLPImportDialog + + &Save + &Salvar + - - Close - Fechar - - - MainWindow + + &Delete + + - - OpenLP Version Updated - Versão do OpenLP Atualizada - - - Ui_customEditDialog + + Displ&ay + + - - Replace edited slide - Substituir slide editado + + Display && Cl&ose + + - - Add new slide at bottom - Adicionar um novo slide no final - - - EditCustomForm + + &Close + + - - You need to enter a title - Você precisa digitar um título - - - ThemeManager + + New Alert + + - - Theme Exists - Tema Existe - - - Ui_MainWindow + + You haven't specified any text for your alert. Please type in some text before clicking New. + + + + + AlertsPlugin.AlertsManager - - &Help - &Ajuda - - - Ui_EditVerseDialog + + Alert message created and displayed. + + + + + AlertsPlugin.AlertsTab - - Bridge - Ligação - - - Ui_OpenSongExportDialog + + Alerts + Alertas + - - OpenSong Song Exporter - Exportador de Músicas para o OpenSong - - - Ui_AmendThemeDialog + + Font + Fonte + - - Vertical Align: - Alinhamento Vertical: - - - TestMediaManager + + Font Name: + Nome da Fonte: + - - Item2 - Item2 + + Font Color: + Cor da Fonte: + - - Item1 - Item1 - - - Ui_AmendThemeDialog + + Background Color: + Cor do Plano de Fundo: + - - Top - Topo - - - BiblesTab + + Font Size: + Tamanho da Fonte: + - - Display Dual Bible Verses - Exibir Versículos Bíblicos Duplos - - - Ui_MainWindow + + pt + pt + - - Toggle Service Manager - Alternar para o Gerenciador de Cultos - - - MediaManagerItem + + Alert timeout: + Tempo Limite para o Alerta: + - - &Add to Service - &Adicionar ao Culto - - + + s + s + + + + Location: + Localização: + + + + Preview + Pré-Visualizar + + + + openlp.org + openlp.org + + + + Top + Topo + + + + Middle + Meio + + + + Bottom + + + + AmendThemeForm - - First Color: - Primeira Cor: - - - ThemesTab + + Theme Maintenance + Manutenção do Tema + - - Song level - Nível de música - - - alertsPlugin + + &Visibility: + + - - Show an alert message - Exibir uma mensagem de alerta - - - Ui_MainWindow + + Opaque + Opaco + - - Ctrl+F1 - Ctrl+F1 + + Transparent + Transparente + - - Save the current service under a new name - Salvar o culto atual com um novo nome - - - Ui_OpenLPExportDialog + + Type: + Tipo: + - - Remove Selected - Remover Selecionado - - - ThemeManager + + Solid Color + Cor Sólida + - - Delete theme - Deletar tema - - - ImageTab + + Gradient + Gradiente + - - Image Settings - Configurações de Imagem - - - Ui_OpenSongImportDialog + + Image + Imagem + - - OpenSong Song Importer - Importador de Músicas do OpenSong - - - SongUsagePlugin + + Image: + Imagem: + - - &Extract recorded data - &Extrair dados armazenados - - - AlertsTab + + Gradient: + + - - Font Name: - Nome da Fonte: - - - Ui_MainWindow + + Horizontal + Horizontal + - - &Web Site - &Web Site - - - MediaManagerItem + + Vertical + Vertical + - - Send the selected item live - Enviar o item selecionado para o ao vivo - - - Ui_MainWindow + + Circular + Circular + - - M&ode - M&odo + + &Background + + - - Translate the interface to your language - Traduzir a interface para o seu idioma + + Main Font + Fonte Principal + - - Service Manager - Gerenciador de Culto - - - CustomMediaItem + + Font: + Fonte: + - - Custom - Customizado - - - ImageMediaItem + + Color: + + - - No items selected... - Nenhum item selecionado... - - - Ui_BibleImportWizard + + Size: + Tamanho: + - - OSIS - OSIS - - - SongsPlugin + + pt + pt + - - openlp.org 1.0 - openlp.org 1.0 - - - Ui_MainWindow + + Wrap indentation: + + - - &Theme - &Tema - - - Ui_EditVerseDialog + + Adjust line spacing: + + - - Edit Verse - Editar Versículo - - - Ui_MainWindow + + Normal + Normal + - - &Language - &Idioma - - - ServiceManager + + Bold + Negrito + - - Move to end - Mover para o fim + + Italics + Itálico + - - Your service is unsaved, do you want to save those changes before creating a new one ? - O seu culto não está salvo. Você deseja salvar estas mudanças antes de criar um novo? - - - Ui_OpenSongExportDialog + + Bold/Italics + Negrito/Itálico + - - Remove Selected - Remover Selecionado - - - SongMediaItem + + Style: + + - - Search: - Buscar: - - - MainWindow + + Display Location + Local de Exibição + - - Save Changes to Service? - Salvar Mudanças no Culto? + + X position: + + - - Your service has changed, do you want to save those changes? - O seu culto foi alterado. Você deseja salvar estas mudanças? - - - EditSongForm + + Y position: + + - - Invalid verse entry - values must be Numeric, I,B,C,T,P,E,O - Registro de Verículo inválido - os valores devem ser numéricos, I,B,C,T,P,E,O - - - Ui_EditSongDialog + + Width: + Largura: + - - &Add to Song - &Adicionar à Música - - - Ui_MainWindow + + Height: + Altura: + - - &About - &Sobre - - - BiblesTab + + px + px + - - Only show new chapter numbers - Somente mostre números de capítulos novos - - - ImportWizardForm + + &Main Font + + - - You need to specify a version name for your Bible! - Você precisa especificar um nome de versão para a sua Bíblia! - - - Ui_AlertEditDialog + + Footer Font + Fonte do Rodapé + - - Delete - Deletar - - - EditCustomForm + + &Footer Font + + - - Error - Erro - - - ThemesTab + + Outline + Esboço + - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - Usar o tema do culto, sobrescrevendo qualquer um dos temas individuais das músicas. Se o culto não tiver um tema, então use o tema global. - - - SongMaintenanceForm + + Outline size: + + - - This topic can't be deleted, it is currently assigned to at least one song! - Este tópico não pode ser deletado pois está atualmente atribuído para pelo menos uma música! - - - AlertEditForm + + Outline color: + + - - Item selected to Add - Item selecionado para Adicionar - - - Ui_AmendThemeDialog + + Show outline: + + - - Right - Direita - - - ThemeManager + + Shadow + Sombra + - - Save Theme - (%s) - Salvar Tema - (%s) - - - ImageMediaItem + + Shadow size: + + - - Allow background of live slide to be overridden - Permitir que o plano de fundo do slide ao vivo seja sobrescrito - - - MediaManagerItem + + Shadow color: + + - - Add the selected item(s) to the service - Adicionar o item selecionado ao culto - - - AuthorsForm + + Show shadow: + + - - Error - Erro - - - BibleMediaItem + + Alignment + Alinhamento + - - Book: - Livro: - - - Ui_AmendThemeDialog + + Horizontal align: + + - - Font Color: - Cor da Fonte: - - - Ui_OpenLPImportDialog + + Left + Esquerda + - - Select openlp.org songfile to import: - Selecione um arquivo do openlp.org para importar: - - - Ui_SettingsDialog + + Right + Direita + - - Settings - Configurações - - - BiblesTab + + Center + Centralizar + - - Layout Style: - Estilo do Layout: - - - MediaManagerItem + + Vertical align: + + - - Edit the selected - Editar o selecionado - - - SlideController + + Top + Topo + - - Move to next - Mover para o próximo - - - Ui_MainWindow + + Middle + Meio + - - &Plugin List - &Lista de Plugin - - + + Bottom + + + + + Slide Transition + Transição do Slide + + + + &Other Options + + + + + Preview + Pré-Visualizar + + + + All Files + + + + + Select Image + + + + + First color: + + + + + Second color: + + + + + Slide height is %s rows. + + + + + Theme &name: + + + + + Use default location + + + + + Transition active + + + + + BibleDB + + + Book not found + + + + BiblePlugin - - &Bible - &Bíblia - - - Ui_BibleImportWizard + + <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. + <strong>Plugin da Bíblia</strong>Este plugin permite exibir na tela versículos bíblicos de diferentes versões durante o culto. + - - Web Download - Download da Internet - - - Ui_AmendThemeDialog + + &Bible + &Bíblia + + + + BiblesPlugin,BiblesTab - - Horizontal - Horizontal - - - ImportWizardForm + + Bibles + Bíblias + + + + BiblesPlugin.BiblesTab - - Open OSIS file - Abrir arquivo OSIS - - - Ui_AmendThemeDialog + + Verse Display + Exibição do Versículo + - - Circular - Circular + + Only show new chapter numbers + Somente mostre números de capítulos novos + - - pt - pt - - - Ui_MainWindow + + Layout style: + + - - &Add Tool... - &Adicionar Ferramenta... - - - SongMaintenanceForm + + Display style: + + - - Delete Topic - Deletar Tópico - - - ServiceManager + + Bible theme: + + - - Move up - Mover para cima - - - Ui_OpenLPImportDialog + + Verse Per Slide + + - - Lyrics - Letras - - - BiblesTab + + Verse Per Line + + - - No brackets - Sem Parênteses - - - Ui_AlertEditDialog + + Continuous + + - - Maintain Alerts - Manter Alertas - - - Ui_AmendThemeDialog + + No Brackets + + - - px - px - - - ServiceManager + + ( And ) + + - - Select a theme for the service - Selecione um tema para o culto - - - ThemesTab + + { And } + + - - Themes - Temas - - - ServiceManager + + [ And ] + + - - Move to bottom - Mover para o fim - - - Ui_PluginViewDialog + + Note: +Changes do not affect verses already in the service. + + - - Status: - Status: - - - Ui_EditSongDialog + + Display dual Bible verses + + + + + BiblesPlugin.ImportWizardForm - - CCLI Number: - Número CCLI: - - - ImportWizardForm + + Bible Import Wizard + Assistente de Importação da Bíblia + - - This Bible already exists! Please import a different Bible or first delete the existing one. - A Bíblia já existe! Por favor importe uma Bíblia diferente ou primeiro delete a existente. - - - Ui_MainWindow + + Welcome to the Bible Import Wizard + Bem Vindo ao assistente de Importação de Bíblias + - - &Translate - &Traduzir - - - AlertEditForm + + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + Este assistente irá ajudá-lo a importar Bíblias de uma variedade de formatos. Clique no botão próximo abaixo para comecar o processo selecionando o formato a ser importado. + - - Please Save or Clear seletced item - Por favor Salve ou Limpe o item selecionado - - - BiblesTab + + Select Import Source + Selecionar Origem da Importação + - - Bibles - Bíblias - - - Ui_SongMaintenanceDialog + + Select the import format, and where to import from. + Selecione o formato e de onde será a importação + - - Authors - Autores - - - SongUsageDetailForm + + Format: + Formato: + - - Output File Location - Local do arquivo de saída - - - BiblesTab + + OSIS + OSIS + - - { and } - { e } - - + + CSV + CSV + + + + OpenSong + OpenSong + + + + Web Download + Download da Internet + + + + File location: + + + + + Books location: + + + + + Verse location: + + + + + Bible filename: + + + + + Location: + Localização: + + + + Crosswalk + Crosswalk + + + + BibleGateway + BibleGateway + + + + Bible: + Bíblia: + + + + Download Options + Opções de Download + + + + Server: + Servidor: + + + + Username: + Nome de Usuário: + + + + Password: + Senha: + + + + Proxy Server (Optional) + Servidor Proxy (Opcional) + + + + License Details + Detalhes da Licença + + + + Set up the Bible's license details. + Configurar detalhes de licença da Bíblia. + + + + Version name: + + + + + Copyright: + Direito Autoral: + + + + Permission: + Permissão: + + + + Importing + Importando + + + + Please wait while your Bible is imported. + Por favor aguarde enquanto a sua Bíblia é importada. + + + + Ready. + Pronto. + + + + Invalid Bible Location + Localização da Bíblia Inválida + + + + You need to specify a file to import your Bible from. + + + + + Invalid Books File + Arquivo de Livros Inválido + + + + You need to specify a file with books of the Bible to use in the import. + + + + + Invalid Verse File + Arquivo de Versículo Inválido + + + + You need to specify a file of Bible verses to import. + + + + + Invalid OpenSong Bible + Bíblia do OpenSong Inválida + + + + You need to specify an OpenSong Bible file to import. + + + + + Empty Version Name + Nome da Versão Vazio + + + + You need to specify a version name for your Bible. + + + + + Empty Copyright + Limpar Direito Autoral + + + + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + Você precisa definir um direito autoral para a sua Bíblia! Bíblias em Domínio Público necessitam ser marcadas como tal. + + + + Bible Exists + Bíblia Existe + + + + This Bible already exists! Please import a different Bible or first delete the existing one. + A Bíblia já existe! Por favor importe uma Bíblia diferente ou primeiro delete a existente. + + + + Open OSIS File + + + + + Open Books CSV File + + + + + Open Verses CSV File + + + + + Open OpenSong Bible + Abrir Biblia do OpenSong + + + + Starting import... + Iniciando importação... + + + + Finished import. + Importação Finalizada. + + + + Your Bible import failed. + A sua Importação da Bíblia falhou. + + + + BiblesPlugin.MediaItem + + + Bible + Bíblia + + + + Quick + Rápido + + + + Advanced + Avançado + + + + Version: + Versão: + + + + Dual: + Duplo: + + + + Search type: + + + + + Find: + Buscar: + + + + Search + Buscar + + + + Results: + Resultados: + + + + Book: + Livro: + + + + Chapter: + Capítulo: + + + + Verse: + Versículo: + + + + From: + De: + + + + To: + Para: + + + + Verse Search + Busca de Versículos + + + + Text Search + Busca de Texto + + + + Clear + Limpar + + + + Keep + Manter + + + + No Book Found + Nenhum Livro Encontrado + + + + No matching book could be found in this Bible. + Nenhum livro foi encontrado nesta Bíblia + + + + etc + + + + + Bible not fully loaded. + + + + + BiblesPlugin.Opensong + + + Importing + Importando + + + + CustomPlugin + + + <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> + + + + + CustomPlugin.CustomTab + + + Custom + Customizado + + + + Custom Display + Exibição Customizada + + + + Display footer + + + + + CustomPlugin.EditCustomForm + + + Edit Custom Slides + Editar Slides Customizados + + + + Move slide up once position. + + + + + Move slide down one position. + + + + + &Title: + + + + + Add New + Adicionar Novo + + + + Add a new slide at bottom. + + + + + Edit + Editar + + + + Edit the selected slide. + + + + + Edit All + Editar Todos + + + + Edit all the slides at once. + + + + + Save + Salvar + + + + Save the slide currently being edited. + + + + + Delete + Deletar + + + + Delete the selected slide. + + + + + Clear + Limpar + + + + Clear edit area + Limpar área de edição + + + + Split Slide + + + + + Split a slide into two by inserting a slide splitter. + + + + + The&me: + + + + + &Credits: + + + + + Save && Preview + Salvar && Pré-Visualizar + + + + Error + Erro + + + + You need to type in a title. + + + + + You need to add at least one slide + + + + + You have one or more unsaved slides, please either save your slide(s) or clear your changes. + + + + + CustomPlugin.MediaItem + + + Custom + Customizado + + + + You haven't selected an item to edit. + + + + + You haven't selected an item to delete. + + + + + DisplayTab + + + Displays + + + + + Default Settings + + + + + X: + + + + + Y: + + + + + Height: + Altura: + + + + Width: + Largura: + + + + Custom Settings + + + + + Width + + + + + Override display settings + + + + GeneralTab - - Prompt to save Service before starting New - Perguntar para salvar o Culto antes de começar um Novo - - - ImportWizardForm - - - Starting import... - Iniciando importação... - - - BiblesTab - - - Note: -Changes don't affect verses already in the service - Nota: -As mudanças não afetam os versículos que já estão no culto - - - Ui_EditVerseDialog - - - Intro - Introdução - - - ServiceManager - - - Move up order - Mover ordem para cima - - - PresentationTab - - - available - disponível - - - ThemeManager - - - default - padrão - - - SongMaintenanceForm - - - Delete Author - Deletar Autor - - - Ui_AmendThemeDialog - - - Display Location - Local de Exibição - - - Ui_PluginViewDialog - - - Version: - Versão: - - - Ui_AlertEditDialog - - - Add - Adicionar - - - GeneralTab - - - General - Geral - - - Ui_AmendThemeDialog - - - Y Position: - Posição Y: - - - ServiceManager - - - Move down order - Mover ordem para baixo - - - BiblesTab - - - verse per slide - versículos por slide - - - Ui_AmendThemeDialog - - - Show Shadow: - Exibir Sombra: - - - AlertsTab - - - Preview - Pré-Visualizar - - - alertsPlugin - - - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - <b>Plugin de Alertas</b><br>Este plugin controla a exibição de alertas na tela de apresentação - - - GeneralTab - - - Show the splash screen - Exibir a tela inicial - - - Ui_MainWindow - - - New Service - Novo Culto - - - SlideController - - - Move to first - Mover para o primeiro - - - Ui_MainWindow - - - &Online Help - &Ajuda Online - - - SlideController - - - Blank Screen - Tela em Branco - - - Ui_MainWindow - - - Save Service - Salvar Culto - - - Save &As... - Salvar &Como... - - - Toggle the visibility of the Media Manager - Alternar a visibilidade do Gerenciador de Mídia - - - BibleMediaItem - - - No Book Found - Nenhum Livro Encontrado - - - Ui_EditSongDialog - - - Add - Adicionar - - - alertsPlugin - - - &Alert - &Alerta - - - BibleMediaItem - - - Advanced - Avançado - - - ImageMediaItem - - - Image(s) - Imagem(s) - - - Ui_MainWindow - - - F11 - F11 - - - F10 - F10 - - - F12 - F12 - - - Ui_BibleImportWizard - - - Select the import format, and where to import from. - Selecione o formato e de onde será a importação - - - Ui_MainWindow - - - Alt+F7 - Alt+F7 - - - Add an application to the list of tools - Adicionar um aplicação para a lista de ferramentas - - - MediaPlugin - - - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - <br>Plugin de Mídia</b><br>Este plugin permite a execução de audio e vídeo - - - BiblesTab - - - Bible Theme: - Tema da Bíblia: - - - SongsPlugin - - - Export songs in openlp.org 1.0 format - Exportar músicas no formato openlp.org 1.0 - - - Ui_MainWindow - - - Theme Manager - Gerenciador de Temas - - - AlertsTab - - - Alerts - Alertas - - - Ui_customEditDialog - - - Move slide down 1 - Mover slide para baixo 1 - - - Ui_AmendThemeDialog - - - Font: - Fonte: - - - ServiceManager - - - Load an existing service - Carregar um culto existente - - - Ui_MainWindow - - - Toggle the visibility of the Theme Manager - Alternar a visibilidade do Gerenciador de Temas - - - PresentationTab - - - Presentations - Apresentações - - - SplashScreen - - - Starting - Iniciando - - - ImageTab - - - Slide Loop Delay: - Intervalo para Repetição do Slide: - - - SlideController - - - Verse - Versículo - - - AlertsTab - - - Alert timeout: - Tempo Limite para o Alerta: - - - Ui_MainWindow - - - &Preview Pane - &Painel de Pré-Visualização - - - MediaManagerItem - - - Add a new - Adicionar um novo - - - ThemeManager - - - Select Theme Import File - Selecionar Arquivo de Importação de Tema - - - New Theme - Novo Tema - - - MediaMediaItem - - - Media - Mídia - - - Ui_AmendThemeDialog - - - Preview - Pré-Visualização - - - Outline Size: - Tamanho do Esboço: - - - Ui_OpenSongExportDialog - - - Progress: - Progresso: - - - AmendThemeForm - - - Second Color: - Segunda Cor: - - - Ui_EditSongDialog - - - Theme, Copyright Info && Comments - Tema, Direitos Autorais && Comentários - - - Ui_AboutDialog - - - Credits - Créditos - - - BibleMediaItem - - - To: - Para: - - - Ui_EditSongDialog - - - Song Book - Livro de Músicas - - - alertsPlugin - - - F7 - F7 - - - Ui_OpenLPExportDialog - - - Author - Autor - - - Ui_AmendThemeDialog - - - Wrap Indentation - Indentação da quebra - - - ThemeManager - - - Import a theme - Importar um tema - - - PresentationPlugin - - - <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - <b>Plugin de Apresentação</b> <br>Entrega a habilidade de mostrar apresentações usando um diferente programas. A escolha dos programas de apresentação disponíveis está disponível para o usuário em uma caixa de seleção. - - - ImageMediaItem - - - Image - Imagem - - - BibleMediaItem - - - Clear - Limpar - - - Ui_MainWindow - - - Save Service As - Salvar Culto Como - - - Ui_AlertDialog - - - Cancel - Cancelar - - - Ui_OpenLPImportDialog - - - Import - Importar - - - Ui_EditVerseDialog - - - Chorus - Refrão - - - Ui_EditSongDialog - - - Edit All - Editar Todos - - - AuthorsForm - - - You need to type in the last name of the author. - Você precisa digitar o sobrenome do autor. - - - SongsTab - - - Songs Mode - Modo de Músicas - - - Ui_AmendThemeDialog - - - Left - Esquerda - - - RemotesPlugin - - - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer.<br>The Primary use for this would be to send alerts from a creche - <b>Plugin Remoto</b><br>Este plugin provê a habilidade de enviar mensagens para uma versão do openlp rodando em um computador diferente.<br>O principal uso para isto seria para uso de alertas da creche - - - ImageTab - - - Images - Imagens - - - BibleMediaItem - - - Verse: - Versículo: - - - Ui_OpenLPExportDialog - - - openlp.org Song Exporter - Exportador de Músicas do openlp.org - - - Song Export List - Lista de Exportação de Músicas - - - ThemeManager - - - Export theme - Exportar tema - - - Ui_SongMaintenanceDialog - - - Delete - Deletar - - - Ui_AmendThemeDialog - - - Theme Name: - Nome do Tema: - - - Ui_AboutDialog - - - About OpenLP - Sobre o OpenLP - - - Ui_MainWindow - - - Toggle the visibility of the Service Manager - Alternar a visibilidade do Gerenciador de Cultos - - - PresentationMediaItem - - - A presentation with that filename already exists. - Uma apresentação com este nome já existe. - - - AlertsTab - - - openlp.org - openlp.org - - - ImportWizardForm - - - Invalid Books File - Arquivo de Livros Inválido - - - Ui_OpenLPImportDialog - - - Song Title - Título da Música - - - MediaManagerItem - - - &Show Live - &Mostrar Ao Vivo - - - AlertsTab - - - Keep History: - Manter Histórico: - - - Ui_AmendThemeDialog - - - Image: - Imagem: - - - Ui_customEditDialog - - - Set Theme for Slides - Definir Tema para os Slides - - - Ui_MainWindow - - - More information about OpenLP - Mais informações sobre o OpenLP - - - AlertsTab - - - Background Color: - Cor do Plano de Fundo: - - - SongMaintenanceForm - - - No topic selected! - Nenhum tópico selecionado! - - - Ui_MainWindow - - - &Media Manager - &Gerenciador de Mídia - - - &Tools - &Ferramentas - - - AmendThemeForm - - - Background Color: - Cor do Plano de Fundo: - - - Ui_EditSongDialog - - - A&dd to Song - A&dicionar uma Música - - - Title: - Título: - - - GeneralTab - - - Screen - Tela - - - AlertsTab - - - s - s - - + + CCLI Details + Detalhes de CCLI + + + + primary + principal + + + + Show blank screen warning + Exibir alerta de tela em branco + + + + Application Startup + Inicialização da Aplicação + + + + Select monitor for output display: + Selecione um monitor para exibição: + + + + Application Settings + Configurações da Aplicação + + + + SongSelect Username: + Usuário do SongSelect: + + + + CCLI Number: + Número CCLI: + + + + Automatically open the last service + Abrir o último culto automaticamente + + + + Preview Next Song from Service Manager + Pré-Visualizar Próxima Música do Gerenciamento de Culto + + + + Prompt to save Service before starting New + Perguntar para salvar o Culto antes de começar um Novo + + + + General + Geral + + + + Show the splash screen + Exibir a tela inicial + + + + Screen + Tela + + + + Monitors + Monitores + + + + SongSelect Password: + Senha do SongSelect: + + + + Display if a single screen + + + + ImagePlugin - - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any somgs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> - <b>Plugin de Imagem</b><br>Permite que imagens de todos os tipos sejam exibidas. Se um número de imagens for selecionada e apresentada na tela ao vivo, é possível virá-las a tempo.<br><br>No plugin, se a opção <i>Sobrescrever Plano de Fundo</i> estiver escolhida e a imagem for selecionado, qualquer música que for exibida irá utilizar a imagem selecionada como plano de fundo ao invés da imagem configurada pelo tema.<br> - - - Ui_AlertEditDialog + + <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> + + + + + ImagePlugin.ImageTab - - Clear - Limpar - - - Ui_BibleImportWizard + + Images + Imagens + - - Please wait while your Bible is imported. - Por favor aguarde enquanto a sua Bíblia é importada. - - - MediaManagerItem + + Image Settings + Configurações de Imagem + - - No items selected... - Nenhum item selecionado... - - - Ui_OpenLPImportDialog + + Slide Loop Delay: + Intervalo para Repetição do Slide: + - - Select All - Selecionar Todos - - - Ui_AmendThemeDialog + + sec + seg + + + + ImagePlugin.MediaItem - - Font Main - Fonte Principal - - - ImageMediaItem + + Image + Imagem + - - Images (*.jpg *jpeg *.gif *.png *.bmp) - Imagens (*.jpg *jpeg *.gif *.png *.bmp) - - - Ui_OpenLPImportDialog + + Select Image(s) + Selecionar Imagem(s) + - - Title - Título - - - Ui_OpenSongExportDialog + + All Files + + - - Select OpenSong song folder: - Selecione o diretório da música do OpenSong: - - - Ui_MainWindow + + Replace Live Background + + - - Toggle Media Manager - Alternar Gerenciador de Mídia - - - SongUsagePlugin + + You must select an item to delete. + + - - &Song Usage - &Uso das Músicas - - - GeneralTab + + Image(s) + Imagem(s) + - - Monitors - Monitores - - - EditCustomForm + + You must select an item to process. + + + + + LanguageManager - - You need to enter a slide - Você precisa inserir um slide - - - Ui_SongMaintenanceDialog + + Language + + - - Topics - Tópicos - - - ImportWizardForm - - - You need to specify a file to import your Bible from! - Você precisa especificar um arquivo para importar a sua Bíblia! - - - Ui_EditVerseDialog - - - Verse Type - Tipo de Versículo - - - OpenSongBible - - - Importing - Importando - - - Ui_EditSongDialog - - - Comments - Comentários - - - AlertsTab - - - Bottom - Final - - - Ui_MainWindow - - - Create a new Service - Criar um novo Culto - - - AlertsTab - - - Top - Topo - - - ServiceManager - - - &Preview Verse - &Pré-Visualizar Versículo - - - Ui_PluginViewDialog - - - TextLabel - TextLabel - - - AlertsTab - - - Font Size: - Tamanho da Fonte: - - - Ui_PluginViewDialog - - - About: - Sobre: - - - Inactive - Inativo - - - Ui_OpenSongExportDialog - - - Ready to export - Pronto para exportação - - - Export - Exportar - - - Ui_PluginViewDialog - - - Plugin List - Lista de Plugins - - - Ui_AmendThemeDialog - - - Transition Active: - Transição Ativa: - - - Ui_BibleImportWizard - - - Proxy Server (Optional) - Servidor Proxy (Opcional) - - - Ui_EditSongDialog - - - &Manage Authors, Topics, Books - &Gerenciar Autores, Tópicos e Livros - - - Ui_SongUsageDetailDialog - - - Audit Detail Extraction - Extração de Detalhes de Auditoria - - - Ui_OpenLPExportDialog - - - Ready to export - Pronto para Exportação - - - EditCustomForm - - - Save && Preview - Salvar && Pré-Visualizar - - - Ui_OpenLPExportDialog - - - Select All - Selecionar Todos - - - Ui_SongUsageDetailDialog - - - to - para - - - Ui_AmendThemeDialog - - - Size: - Tamanho: - - + + After restart new Language settings will be used. + + + + MainWindow - - OpenLP Main Display Blanked - Tela Principal do OpenLP em Branco - - - Ui_OpenLPImportDialog + + The Main Display has been blanked out + A Tela Principal foi apagada + - - Remove Selected - Remover Selecionado - - - Ui_EditSongDialog + + OpenLP Version Updated + Versão do OpenLP Atualizada + - - Delete - Deletar - - - ImportWizardForm + + Save Changes to Service? + Salvar Mudanças no Culto? + - - You need to specify an OpenSong Bible file to import! - Você precisa especificar uma Bíblia do OpenSong para importar! - - - PresentationMediaItem + + OpenLP Main Display Blanked + Tela Principal do OpenLP em Branco + - - File exists - Arquivo existe - - - Ui_OpenLPExportDialog + + OpenLP 2.0 + OpenLP 2.0 + - - Title - Título - - - Ui_OpenSongImportDialog + + English + Inglês + - - Ready to import - Pronto para importação - - - SlideController + + &File + &Arquivo + - - Stop continuous loop - Parar repetição contínua + + &Import + &Importar + - - s - s - - - SongMediaItem + + &Export + &Exportar + - - Song Maintenance - Manutenção de Músicas - - - Ui_customEditDialog + + &View + &Visualizar + - - Edit - Editar - - - Ui_AmendThemeDialog + + M&ode + M&odo + - - Gradient : - Gradiente: - - - ImportWizardForm + + &Tools + &Ferramentas + - - Invalid Verse File - Arquivo de Versículo Inválido - - - EditSongForm + + &Settings + &Configurações + - - Error - Erro - - - Ui_customEditDialog + + &Language + &Idioma + - - Add New - Adicionar Novo - - - Ui_AuthorsDialog + + &Help + &Ajuda + - - Display name: - Nome da Tela: - - - SongMaintenanceForm + + Media Manager + Gerenciador de Mídia + - - Are you sure you want to delete the selected topic? - Você tem certeza que deseja deletar o tópico selecionado? - - - Ui_AmendThemeDialog + + Service Manager + Gerenciador de Culto + - - Bold/Italics - Negrito/Itálico - - - Ui_SongMaintenanceDialog + + Theme Manager + Gerenciador de Temas + - - Song Maintenance - Manutenção de Músicas - - - Ui_BibleImportWizard + + &New + &Novo + - - Welcome to the Bible Import Wizard - Bem Vindo ao assistente de Importação de Bíblias - - - SongsTab + + New Service + Novo Culto + - - Songs - Músicas - - - Ui_BibleImportWizard + + Create a new service. + + - - Password: - Senha: - - - Ui_MainWindow + + Ctrl+N + Ctrl+N + - - &Theme Manager - &Gerenciador de Temas - - + + &Open + &Abrir + + + + Open Service + Abrir Culto + + + + Open an existing service. + + + + + Ctrl+O + Ctrl+O + + + + &Save + &Salvar + + + + Save Service + Salvar Culto + + + + Save the current service to disk. + + + + + Ctrl+S + Ctrl+S + + + + Save &As... + Salvar &Como... + + + + Save Service As + Salvar Culto Como + + + + Save the current service under a new name. + + + + + Ctrl+Shift+S + + + + + E&xit + S&air + + + + Quit OpenLP + Fechar o OpenLP + + + + Alt+F4 + Alt+F4 + + + + &Theme + &Tema + + + + &Configure OpenLP... + + + + + &Media Manager + &Gerenciador de Mídia + + + + Toggle Media Manager + Alternar Gerenciador de Mídia + + + + Toggle the visibility of the media manager. + + + + + F8 + F8 + + + + &Theme Manager + &Gerenciador de Temas + + + + Toggle Theme Manager + Alternar para Gerenciamento de Temas + + + + Toggle the visibility of the theme manager. + + + + + F10 + F10 + + + + &Service Manager + &Gerenciador de Culto + + + + Toggle Service Manager + Alternar para o Gerenciador de Cultos + + + + Toggle the visibility of the service manager. + + + + + F9 + F9 + + + + &Preview Panel + &Painel de Pré-Visualização + + + + Toggle Preview Panel + Alternar para Painel de Pré-Visualização + + + + Toggle the visibility of the preview panel. + + + + + F11 + F11 + + + + &Live Panel + + + + + Toggle Live Panel + + + + + Toggle the visibility of the live panel. + + + + + F12 + F12 + + + + &Plugin List + &Lista de Plugin + + + + List the Plugins + Listar os Plugins + + + + Alt+F7 + Alt+F7 + + + + &User Guide + &Guia do Usuário + + + + &About + &Sobre + + + + More information about OpenLP + Mais informações sobre o OpenLP + + + + Ctrl+F1 + Ctrl+F1 + + + + &Online Help + &Ajuda Online + + + + &Web Site + &Web Site + + + + &Auto Detect + + + + + Use the system language, if available. + + + + + Set the interface language to %s + + + + + Add &Tool... + + + + + Add an application to the list of tools. + + + + + &Default + + + + + Set the view mode back to the default. + + + + + &Setup + + + + + Set the view mode to Setup. + + + + + &Live + &Ao Vivo + + + + Set the view mode to Live. + + + + + Version %s of OpenLP is now available for download (you are currently running version %s). + +You can download the latest version from http://openlp.org + + + + + Your service has changed. Do you want to save those changes? + + + + + Default Theme: %s + + + + MediaManagerItem - - Preview the selected item - Pré-Visualizar o item selecionado - - - Ui_BibleImportWizard + + You must select one or more items + Você precisa selecionar um ou mais itens + - - Version Name: - Nome da Versão: - - - Ui_AboutDialog + + Delete the selected item + Deletar o item selecionado + - - About - Sobre - - - MediaMediaItem + + &Add to Service + &Adicionar ao Culto + - - Select Media - Selecionar Mídia - - - Ui_AmendThemeDialog + + Send the selected item live + Enviar o item selecionado para o ao vivo + - - Horizontal Align: - Alinhamento Horizontal: - - + + Add the selected item(s) to the service + Adicionar o item selecionado ao culto + + + + &Show Live + &Mostrar Ao Vivo + + + + Preview the selected item + Pré-Visualizar o item selecionado + + + + No Items Selected + + + + + Import %s + + + + + Import a %s + + + + + Load %s + + + + + Load a new %s + + + + + New %s + + + + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Preview %s + + + + + Add %s to Service + + + + + &Edit %s + + + + + &Delete %s + + + + + &Preview %s + + + + + &Add to selected Service Item + + + + + You must select one or more items to preview. + + + + + You must select one or more items to send live. + + + + + You must select one or more items. + + + + + No items selected + + + + + No Service Item Selected + + + + + You must select an existing service item to add to. + + + + + Invalid Service Item + + + + + You must select a %s service item. + + + + + MediaPlugin + + + <b>Media Plugin</b><br>This plugin allows the playing of audio and video media + <br>Plugin de Mídia</b><br>Este plugin permite a execução de audio e vídeo + + + + MediaPlugin.MediaItem + + + Media + Mídia + + + + Select Media + Selecionar Mídia + + + + Replace Live Background + + + + + You must select an item to delete. + + + + + OpenLP + + + Image Files + + + + + PluginForm + + + Plugin List + Lista de Plugins + + + + Plugin Details + Detalhes do Plugin + + + + Version: + Versão: + + + + TextLabel + TextLabel + + + + About: + Sobre: + + + + Status: + Status: + + + + Active + Ativo + + + + Inactive + Inativo + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + + + + + PresentationPlugin + + + <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + + + + + PresentationPlugin.MediaItem + + + Presentation + Apresentação + + + + Select Presentation(s) + Selecionar Apresentação(ões) + + + + Automatic + + + + + Present using: + Apresentar usando: + + + + File exists + Arquivo existe + + + + A presentation with that filename already exists. + Uma apresentação com este nome já existe. + + + + You must select an item to delete. + + + + + PresentationPlugin.PresentationTab + + + Presentations + Apresentações + + + + Available Controllers + Controladores Disponíveis + + + + available + disponível + + + + RemotePlugin + + + <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer via a web browser or other app<br>The Primary use for this would be to send alerts from a creche + + + + + RemotePlugin.RemoteTab + + + Remotes + Remoto + + + + Remotes Receiver Port + Porta Recebedora Remota + + + + ServiceItemEditForm + + + Service Item Maintenance + + + + + Up + + + + + Delete + Deletar + + + + Down + + + + ServiceManager - - &Edit Item - &Editar Item - - - Ui_AmendThemeDialog + + Save Changes to Service? + Salvar Mudanças no Culto? + - - Background Type: - Tipo de Plano de Fundo: - - - Ui_MainWindow + + Open Service + Abrir Culto + - - &Save - &Salvar + + Move to top + Mover para o topo + - - OpenLP 2.0 - OpenLP 2.0 - - + + 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 + + + Settings + Configurações + + + + 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 + + + &Delete recorded data + &Deletar dados armazenados + + + + Start/Stop live song usage recording + Iniciar/Parar registro do uso de músicas + + + + <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service + <b>Plugin de Uso das Músicas</b><br>Este plugin registra o uso das músicas e quando elas foram usadas durante um culto + + + + Delete song usage to specified date + Deletar uso da música para a data especificada + + + + Generate report on Song Usage + Gerar relatório de Uso das Músicas + + + + Song Usage Status + Status de Uso das Músicas + + + + &Extract recorded data + &Extrair dados armazenados + + + + &Song Usage + &Uso das Músicas + + + + SongsPlugin + + + &Song + &Música + + + + Import songs using the import wizard. + + + + + Songs of Fellowship (temp menu item) + + + + + Import songs from the VOLS1_2.RTF, sof3words.rtf and sof4words.rtf supplied with the music books + + + + + Generic Document/Presentation Import (temp menu item) + + + + + Import songs from Word/Writer/Powerpoint/Impress + + + + + Open Songs of Fellowship file + + + + + Import Error + + + + + Error importing Songs of Fellowship file. +OpenOffice.org must be installed and you must be using an unedited copy of the RTF included with the Songs of Fellowship Music Editions + + + + + Open documents or presentations + + + + + <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + + + + + SongsPlugin.AuditDeleteDialog + + + Song Usage Delete + + + + + SongsPlugin.AuditDetailDialog + + + Song Usage Extraction + + + + + Select Date Range + + + + + to + para + + + + Report Location + Localização do Relatório + + + + SongsPlugin.AuthorsForm + + + Author Maintenance + Manutenção de Autores + + + + Display name: + Nome da Tela: + + + + First name: + Primeiro Nome: + + + + Last name: + Sobrenome: + + + + Error + Erro + + + + You need to type in the first name of the author. + Você precisa digitar o primeiro nome do autor. + + + + You need to type in the last name of the author. + Você precisa digitar o sobrenome do autor. + + + + You haven't set a display name for the author, would you like me to combine the first and last names for you? + Você não configurou um nome de exibição para o autor. Você quer que eu combine o primeiro e ultimo nomes para você? + + + + SongsPlugin.EditSongForm + + + Song Editor + Editor de Músicas + + + + &Title: + + + + + Alt&ernate Title: + + + + + &Lyrics: + + + + + &Verse Order: + + + + + &Add + + + + + &Edit + &Editar + + + + Ed&it All + + + + + &Delete + + + + + Title && Lyrics + Título && Letras + + + + Authors + Autores + + + + &Add to Song + &Adicionar à Música + + + + &Remove + &Remover + + + + &Manage Authors, Topics, Books + &Gerenciar Autores, Tópicos e Livros + + + + Topic + Tópico + + + + A&dd to Song + A&dicionar uma Música + + + + R&emove + R&emover + + + + Song Book + Livro de Músicas + + + + Authors, Topics && Book + Autores, Tópicos && Livro + + + + 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 + + + + Save && Preview + Salvar && Pré-Visualizar + + + + Add Author + + + + + This author does not exist, do you want to add them? + + + + + 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? + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + Editar Versículo + + + + &Verse type: + + + + + &Insert + + + + + SongsPlugin.ImportWizardForm + + + No OpenLyrics Files Selected + + + + + You need to add at least one OpenLyrics song file to import from. + + + + + No OpenSong Files Selected + + + + + You need to add at least one OpenSong song file to import from. + + + + + No CCLI Files Selected + + + + + You need to add at least one CCLI file to import from. + + + + + No CSV File Selected + + + + + You need to specify a CSV file to import from. + + + + + Starting import... + Iniciando importação... + + + + Song Import Wizard + + + + + Welcome to the Song Import Wizard + + + + + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. + + + + + Select Import Source + Selecionar Origem da Importação + + + + Select the import format, and where to import from. + Selecione o formato e de onde será a importação + + + + Format: + Formato: + + + + OpenLyrics + + + + + OpenSong + OpenSong + + + + CCLI + + + + + CSV + CSV + + + + Add Files... + + + + + Remove File(s) + + + + + Filename: + + + + + Browse... + + + + + Importing + Importando + + + + Please wait while your songs are imported. + + + + + Ready. + Pronto. + + + + %p% + + + + + SongsPlugin.MediaItem + + + Song + Música + + + + Song Maintenance + Manutenção de Músicas + + + + Maintain the lists of authors, topics and books + Gerenciar as listas de autores, tópicos e livros + + + + Search: + Buscar: + + + + Type: + Tipo: + + + + Clear + Limpar + + + + Search + Buscar + + + + Titles + Títulos + + + + Lyrics + Letras + + + + Authors + Autores + + + + %s (%s) + + + + + You must select an item to edit. + + + + + You must select an item to delete. + + + + + Delete song? + + + + + Delete %d songs? + + + + + Delete Confirmation + + + + + CCLI Licence: + Licença CCLI: + + + + SongsPlugin.SongBookForm + + + Edit Book + Editar Livro + + + + &Name: + + + + + &Publisher: + + + + + Error + Erro + + + + You need to type in a name for the book. + + + + + SongsPlugin.SongImport + + + copyright + + + + + © + + + + + SongsPlugin.SongMaintenanceForm + + + Song Maintenance + Manutenção de Músicas + + + + Authors + Autores + + + + Topics + Tópicos + + + + Books/Hymnals + Livros/Hinários + + + + &Add + + + + + &Edit + &Editar + + + + &Delete + + + + + Error + Erro + + + + Couldn't add your author. + + + + + Couldn't add your topic. + + + + + Couldn't add your book. + + + + + Couldn't save your author. + + + + + Couldn't save your topic. + + + + + Couldn't save your book. + + + + + 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 can't 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 can't 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 can't 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 + Local do arquivo de saída + + + + SongsPlugin.SongsTab + + + Songs + Músicas + + + + Songs Mode + Modo de Músicas + + + + Enable search as you type + + + + + Display Verses on Live Tool bar + + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + Manutenção de Tópico + + + + Topic name: + Nome do tópico: + + + + Error + Erro + + + + You need to type in a topic name! + Você precisa digitar um nome para o tópico! + + + + Splashscreen + + + Starting + Iniciando + + + + Splash Screen + Tela Inicial + + + ThemeManager - - A theme with this name already exists, would you like to overwrite it? - Um tema com este nome já existe. Você gostaria de sobrescrevê-lo? - - - PresentationMediaItem + + Import Theme + Importar Tema + - - Select Presentation(s) - Selecionar Apresentação(ões) - - - ThemeManager + + Delete Theme + Deletar Tema + - - Export a theme - Exportar um tema - - - AmendThemeForm + + Error + Erro + - - Open file - Abrir arquivo - - - Ui_TopicsDialog + + Edit Theme + Editar Tema + - - Topic Maintenance - Manutenção de Tópico - - - Ui_customEditDialog + + Export Theme + Exportar Tema + - - Clear edit area - Limpar área de edição - - - Ui_AmendThemeDialog + + Theme Exists + Tema Existe + - - Show Outline: - Mostrar Esboço: - - - SongBookForm + + Save Theme - (%s) + Salvar Tema - (%s) + - - You need to type in a book name! - Você precisa digitar um nome de livro! - - - ImportWizardForm + + Select Theme Import File + Selecionar Arquivo de Importação de Tema + - - Open OpenSong Bible - Abrir Biblia do OpenSong - - - Ui_MainWindow + + New Theme + Novo Tema + - - Look && &Feel - Aparência - - - Ui_BibleImportWizard + + Create a new theme. + + - - Ready. - Pronto. - - - ThemeManager + + Edit a theme. + + - - You have not selected a theme! - Você não selecionou um tema! - - - Ui_SongMaintenanceDialog + + Delete a theme. + + - - Books/Hymnals - Livros/Hinários - - - Ui_AboutDialog + + Import a theme. + + - - Contribute - Contribuir - - - Ui_AmendThemeDialog + + Export a theme. + + - - Gradient - Gradiente - - - Ui_BibleImportWizard + + &Edit Theme + + - - Books Location: - Localização dos Livros: - - - Ui_OpenSongExportDialog + + &Delete Theme + + - - Full Song List - Lista de Músicas Completa - - - GeneralTab + + Set As &Global Default + + - - SongSelect Password: - Senha do SongSelect: - - + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + You are unable to delete the default theme. + + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + You have not selected a theme. + + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Theme (*.*) + + + + + File is not a valid theme. +The content encoding is not UTF-8. + + + + + File is not a valid theme. + + + + + A theme with this name already exists. Would you like to overwrite it? + + + + + ThemesTab + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Use o tema de cada música na base de dados. Se uma música não tiver um tema associado com ela, então use o tema do culto. Se o culto não tiver um tema, então use o tema global. + + + + Use the global theme, overriding any themes associated with either the service or the songs. + Usar o tema global, sobrescrevendo qualquer tema associado com cultos ou músicas. + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + Usar o tema do culto, sobrescrevendo qualquer um dos temas individuais das músicas. Se o culto não tiver um tema, então use o tema global. + + + + Themes + Temas + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + &Service Level + + + + + &Global Level + + + + + VerseType + + + Verse + Versículo + + + + Chorus + Refrão + + + + Bridge + Ligação + + + + Pre-Chorus + Pré-Refrão + + + + Intro + Introdução + + + + Ending + Terminando + + + + Other + Outro + + diff --git a/resources/i18n/openlp_sv.ts b/resources/i18n/openlp_sv.ts index cdb33f4a2..6df67b51f 100644 --- a/resources/i18n/openlp_sv.ts +++ b/resources/i18n/openlp_sv.ts @@ -1,4262 +1,3775 @@ - - - - BibleMediaItem - - - Quick - Snabb - - - Ui_customEditDialog - - - Delete selected slide - Ta bort vald bild - - - BiblesTab - - - ( and ) - ( och ) - - - RemoteTab - - - Remotes - FjärrstyrningarWhat is "remotes"? current translation is equal to "remote controlings" - - - Ui_EditSongDialog - - - &Remove - &Ta bort - - - Ui_AmendThemeDialog - - - Shadow Size: - Skuggstorlek: - - - Ui_OpenSongExportDialog - - - Close - Stäng - - - ThemeManager - - - Import Theme - Importera tema - - - Ui_AmendThemeDialog - - - Slide Transition - Bildövergång - - - SongMaintenanceForm - - - Are you sure you want to delete the selected book? - Är du säker på att du vill ta bort vald bok? - - - ThemesTab - - - Theme level - Temanivå - - - BibleMediaItem - - - Bible - Bibel - - - ServiceManager - - - Save Changes to Service? - Spara Ändringar till Planering?"Service" is hard to translate, current translation is more equal to "schedule" - - - SongUsagePlugin - - - &Delete recorded data - &Ta bort inspelad data - - - Ui_OpenLPExportDialog - - - Song Title - Sångtitel - - - Ui_customEditDialog - - - Edit selected slide - Redigera vald bild - - - SongMediaItem - - - CCLI Licence: - CCLI-licens: - - - Ui_BibleImportWizard - - - Bible Import Wizard - Bibelimport-guide - - - Ui_customEditDialog - - - Edit All - Redigera alla - - - SongMaintenanceForm - - - Couldn't save your author. - Kunde inte spara din låtskrivare.I think it's referring to the author of a song? - - - Ui_ServiceNoteEdit - - - Service Item Notes - Mötesanteckningar - - - Ui_customEditDialog - - - Add new slide at bottom - Lägg till ny bild i slutet - - - Clear - Rensa - - - ThemesTab - - - Global theme - Globalt tema - - - PresentationPlugin - - - <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - <b>Presentations Plugin</b> <br> Ger möjlighet att visa presentationer genom olika program. Tillgängliga presentationsprogram finns i en drop-down meny. - - - SongUsagePlugin - - - Start/Stop live song usage recording - Starta/Stoppa inspelning av sånganvändning - - - MainWindow - - - The Main Display has been blanked out - Huvuddisplayen har rensatsHard with a good translation, "rensats", "tömts"? - - - Ui_OpenSongExportDialog - - - Lyrics - Sångtexter - - - Ui_AlertDialog - - - Display - Visa - - - SongMaintenanceForm - - - This author can't be deleted, they are currently assigned to at least one song. - Låtskrivaren kan inte tas bort, den är associerad med åtminstone en sång. - - - Ui_customEditDialog - - - Delete - Ta bort - - - Ui_EditVerseDialog - - - Verse - Vers - - - Ui_OpenSongImportDialog - - - OpenSong Folder: - OpenSong-mapp: - - - ThemeManager - - - Create a new theme - Skapa ett nytt tema - - - Ui_MainWindow - - - Open an existing service - Öppna en befintlig mötesplanering - - - SlideController - - - Move to previous - Flytta till föregående - - - SongsPlugin - - - &Song - &Sång - - - Ui_PluginViewDialog - - - Plugin Details - Plugindetaljer - - - ImportWizardForm - - - You need to specify a file with books of the Bible to use in the import. - Du måste välja en fil med Bibelböcker att använda i importen. - - - AlertsTab - - - Edit History: - Redigera historik: - - - Ui_MainWindow - - - &File - &Fil - - - BiblesTab - - - verse per line - vers per rad - - - Ui_customEditDialog - - - Theme: - Tema: - - - SongMaintenanceForm - - - Couldn't add your book. - Kunde inte lägga till din bok. - - - Error - Fel - - - Ui_BibleImportWizard - - - Bible: - Bibel: - - - ThemeManager - - - Delete Theme - Ta bort tema - - - SplashScreen - - - Splash Screen - Startbild - - - SongMediaItem - - - Song - Sång - - - Ui_OpenSongExportDialog - - - Song Title - Sångtitel - - - Ui_AmendThemeDialog - - - Bottom - Längst ner - - - Ui_MainWindow - - - List the Plugins - Lista Plugin - - - SongMaintenanceForm - - - No author selected! - Ingen författare vald! - - - SongUsageDeleteForm - - - Delete Selected Song Usage Events? - Ta bort valda sånganvändningsdata? - - - SongUsagePlugin - - - <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service - <b>SongUsage Plugin</b><br>Det här pluginprogrammet spelar in användningen av sånger och när de använts i en planering - - - Ui_customEditDialog - - - Move slide Up 1 - Flytta upp bild ett steg - - - SongsPlugin - - - OpenSong - OpenSong - - - AlertsManager - - - Alert message created and delayed - Larmmeddelande skapat och fördröjt - - - Ui_EditSongDialog - - - Alternative Title: - Alternativ titel: - - - ServiceManager - - - Open Service - Öppna Mötesplanering - - - BiblesTab - - - Display Style: - Visningsutseende: - - - Ui_AmendThemeDialog - - - Image - Bild - - - EditSongForm - - - You need to enter a song title. - Du måste ange en sångtitel. - - - ThemeManager - - - Error - Fel - - - Ui_SongUsageDeleteDialog - - - Song Usage Delete - Ta bort inspelad sånganvändning - - - ImportWizardForm - - - Invalid Bible Location - Felaktig bibelplacering - - - BibleMediaItem - - - Book: - Bok: - - - ThemeManager - - - Make Global - Gör global - - - Ui_MainWindow - - - &Service Manager - &Mötesplaneringshanterare - - - Ui_OpenLPImportDialog - - - Author - Författare - - - Ui_AmendThemeDialog - - - Height: - Höjd: - - - ThemeManager - - - Delete a theme - Ta bort ett tema - - - Ui_BibleImportWizard - - - Crosswalk - Crosswalk?? - - - SongBookForm - - - Error - Fel - - - Ui_AuthorsDialog - - - Last name: - Efternamn: - - - ThemesTab - - - Use the global theme, overriding any themes associated with either the service or the songs. - Använd det globala temat, ignorerar teman associerade med mötesplaneringen eller sångerna. - - - Ui_customEditDialog - - - Title: - Titel: - - - ImportWizardForm - - - You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. - Du måste infoga copyright-information för din Bibel! Biblar i den publika domänen måste innehålla det. - - - SongMediaItem - - - Maintain the lists of authors, topics and books - Hantera listorna över författare, ämnen och böckerjag tror att hantera är tillräckligt generellt - - - Ui_AlertEditDialog - - - Save - Spara - - - EditCustomForm - - - You have unsaved data - Du har osparade data - - - Ui_AmendThemeDialog - - - Outline - Kontur - - - BibleMediaItem - - - Text Search - Textsökning - - - Ui_BibleImportWizard - - - CSV - CSV - - - SongUsagePlugin - - - Delete song usage to specified date - Ta bort sånganvändning fram till specificerat datum - - - Ui_SongUsageDetailDialog - - - Report Location - Rapportera placering - - - Ui_BibleImportWizard - - - OpenSong - OpenSong - - - Ui_MainWindow - - - Open Service - Öppna mötesplanering - - - BibleMediaItem - - - Find: - Hitta: - - - ImageMediaItem - - - Select Image(s) - Välj bild(er) - - - BibleMediaItem - - - Search Type: - Sök Typ: - - - Ui_MainWindow - - - Media Manager - Mediahanterare - - - Alt+F4 - Alt+F4 - - - MediaManagerItem - - - &Preview - &Förhandsgranska - - - GeneralTab - - - CCLI Details - CCLI-detaljer - - - BibleMediaItem - - - Bible not fully loaded - Bibeln är inte fullt laddad - - - Ui_MainWindow - - - Toggle the visibility of the Preview Panel - Växla förhandsgranskningens synlighet - - - ImportWizardForm - - - Bible Exists - Bibel existerar - - - Ui_MainWindow - - - &User Guide - &Användarguide - - - AlertsTab - - - pt - pt - - - Ui_MainWindow - - - Set the interface language to English - Byt språk till engelska - - - Ui_AmendThemeDialog - - - Main Font - Huvudfont - - - ImportWizardForm - - - Empty Copyright - Tom copyright-information - - - AuthorsForm - - - You need to type in the first name of the author. - Du måste ange låtskrivarens förnamn. - - - SongsTab - - - Display Verses on Live Tool bar: - Visa Verser i Live-verktygsfältet:changing to proposed translation, but without the quote-marks which i think looks out of place since we use live without translation (since there are no translation to live) - - - ServiceManager - - - Move to top - Flytta längst upp - - - ImageMediaItem - - - Override background - Ignorera bakgrund - - - Ui_SongMaintenanceDialog - - - Edit - Redigera - - - Ui_OpenSongExportDialog - - - Select All - Välj allt - - - ThemesTab - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - Använd temat för varje sång i databasen indviduellt. Om en sång inte har ett associerat tema, använd planeringens schema. Om planeringen inte har ett tema, använd globala temat. - - - PresentationMediaItem - - - Presentation - Presentation - - - Ui_AmendThemeDialog - - - Solid Color - Solid Färg - - - CustomTab - - - Custom - Anpassacustomized or customize? - - - Ui_OpenLPImportDialog - - - Ready to import - Redo att importera - - - MainWindow - - - OpenLP version %s has been updated to version %s - -You can obtain the latest version from http://openlp.org - OpenLP version %s har uppdaterats till version %s - -Du kan hämta den senaste versionen på http://openlp.org - - - Ui_BibleImportWizard - - - File Location: - Filsökväg: - - - SlideController - - - Go to Verse - Hoppa till vers - - - SongMaintenanceForm - - - Couldn't add your topic. - Kunde inte lägga till ditt ämne. - - - Ui_MainWindow - - - &Import - &Importera - - - Quit OpenLP - Stäng OpenLP - - - Ui_BibleImportWizard - - - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - Den här guiden hjälper dig importera biblar från en mängd olika format. Klicka på nästa-knappen nedan för att börja proceduren genom att välja ett format att importera från. - - - Ui_OpenLPExportDialog - - - Title - Titel - - - ImportWizardForm - - - Empty Version Name - Tomt versionsnamn - - - Ui_MainWindow - - - &Preview Panel - &Förhandsgranskning - - - SlideController - - - Start continuous loop - Börja oändlig loop - - - GeneralTab - - - primary - primär - - - Ui_EditSongDialog - - - Add a Theme - Lägg till ett tema - - - Ui_MainWindow - - - &New - &Ny - - - Ui_customEditDialog - - - Credits: - Medverkande: - - - Ui_EditSongDialog - - - R&emove - Ta &borttycker att b verkar vara en lämplig knapp för snabbkommandot - - - SlideController - - - Live - Live - - - Ui_BibleImportWizard - - - Select Import Source - Välj importkälla - - - BiblesTab - - - continuous - oändlig - - - ThemeManager - - - File is not a valid theme. - Filen är inte ett giltigt tema. - - - GeneralTab - - - Application Startup - Programstart - - - Ui_AmendThemeDialog - - - Use Default Location: - Använd standardsökväg: - - - Ui_OpenSongImportDialog - - - Import - Importera - - - Ui_AmendThemeDialog - - - Other Options - Andra alternativ - - - Ui_EditSongDialog - - - Verse Order: - Versordning: - - - Ui_MainWindow - - - Default Theme: - Standardtema: - - - Toggle Preview Panel - Växla förhandsgranskningspanel - - - SongMediaItem - - - Lyrics - Sångtexter - - - Ui_OpenLPImportDialog - - - Progress: - Händelseförlopp: - - - Ui_AmendThemeDialog - - - Shadow - Skugga - - - GeneralTab - - - Select monitor for output display: - Välj skärm för utsignal: - - - Ui_MainWindow - - - &Settings - &Inställningar - - - EditSongForm - - - Invalid verse entry - values must be Numeric, I,B,C,T,P,E,O - Ogiltig vers - värden måste vara numeriska, I,B,C,T,P,E,O - - - Ui_AmendThemeDialog - - - Italics - Kursiv - - - ServiceManager - - - Create a new service - Skapa en ny mötesplanering - - - Ui_AmendThemeDialog - - - Background: - Bakgrund: - - - Ui_OpenLPImportDialog - - - openlp.org Song Importer - openlp.org sångimportör - - - Ui_BibleImportWizard - - - Copyright: - Copyright: - - - ThemesTab - - - Service level - Mötesplaneringsnivå - - - BiblesTab - - - [ and ] - [ och ] - - - Ui_BibleImportWizard - - - Verse Location: - Verssökväg: - - - MediaManagerItem - - - You must select one or more items - Du måste välja ett eller flera objekt - - - GeneralTab - - - Application Settings - Programinställningar - - - ServiceManager - - - Save this service - Spara denna mötesplanering - - - ImportWizardForm - - - Open Books CSV file - Öppna böcker CSV-fil - - - GeneralTab - - - SongSelect Username: - SongSelect Användarnamn: - - - Ui_AmendThemeDialog - - - X Position: - X-position: - - - BibleMediaItem - - - No matching book could be found in this Bible. - Ingen matchande bok kunde hittas i den här Bibeln. - - - Ui_BibleImportWizard - - - Server: - Server: - - - Ui_EditVerseDialog - - - Ending - Ending - - - CustomTab - - - Display Footer: - Visa sidfot: - - - ImportWizardForm - - - Invalid OpenSong Bible - Ogiltig OpenSong-bibel - - - GeneralTab - - - CCLI Number: - CCLI-nummer: - - - Ui_AmendThemeDialog - - - Center - Centrera - - - ServiceManager - - - Theme: - Tema: - - - AlertEditForm - - - Please save or clear selected item - Spara eller töm valt objekt - - - Ui_MainWindow - - - &Live - &Livejag tror live är en bra översättning, eftersom man faktiskt säger live på svenska, typ liveinspelning, och live är ganska konkret då det handlar om något som blir verklighet liksom - - - Ui_AmendThemeDialog - - - <Color2> - <Färg2> - - - Ui_MainWindow - - - English - Engelska - - - ImageMediaItem - - - You must select one or more items - Du måste välja ett eller flera objekt - - - Ui_AuthorsDialog - - - First name: - Förnamn: - - - Ui_OpenLPExportDialog - - - Select openlp.org export filename: - Välj openlp.org exportfilnamn: - - - Ui_BibleImportWizard - - - Permission: - Rättigheter: - - - Ui_OpenSongImportDialog - - - Close - Stäng - - - Ui_SongUsageDetailDialog - - - Song Usage Extraction - Sånganvändningsutdrag - - - Ui_AmendThemeDialog - - - Opaque - Ogenomskinlig - - - ImportWizardForm - - - Your Bible import failed. - Din Bibelimport misslyckades. - - - SlideController - - - Start playing media - Börja spela media - - - SongMediaItem - - - Type: - Typ: - - - SongMaintenanceForm - - - This book can't be deleted, it is currently assigned to at least one song. - Boken kan inte tas bort, den är associerad med åtminstone en sång. - - - Ui_AboutDialog - - - Close - Stäng - - - TopicsForm - - - You need to type in a topic name! - Du måste skriva in ett namn på ämnet! - - - Ui_OpenSongExportDialog - - - Song Export List - Sångexporteringslista - - - BibleMediaItem - - - Dual: - Dubbel: - - - ImageTab - - - sec - sek - - - ServiceManager - - - Delete From Service - Ta bort från mötesplanering - - - GeneralTab - - - Automatically open the last service - Öppna automatiskt den senaste planeringen - - - Ui_OpenLPImportDialog - - - Song Import List - Sångimporteringslista - - - Ui_OpenSongExportDialog - - - Author - FörfattareSongwriter or bible author? - - - Ui_AmendThemeDialog - - - Outline Color: - Konturfärg: - - - Ui_MainWindow - - - F9 - F9 - - - F8 - F8 - - - ServiceManager - - - &Change Item Theme - &Byt objektets tema - - - Ui_SongMaintenanceDialog - - - Topics - Ämnen - - - Ui_OpenLPImportDialog - - - Import File Song List - Importera fil - sånglista - - - Ui_customEditDialog - - - Edit Custom Slides - Redigera anpassad bild - - - Ui_BibleImportWizard - - - Set up the Bible's license details. - Skriv in Bibelns licensdetaljer. - - - Ui_EditVerseDialog - - - Number - Nummer - - - Ui_AmendThemeDialog - - - Alignment - Justering - - - SongMaintenanceForm - - - Delete Book - Ta bort bok - - - ThemeManager - - - Edit a theme - Redigera ett tema - - - Ui_BibleImportWizard - - - BibleGateway - BibleGateway - - - GeneralTab - - - Preview Next Song from Service Manager - Förhandsgranska nästa sång från mötesplaneringen - - - Ui_EditSongDialog - - - Title && Lyrics - Titel && Sångtexter - - - SongMaintenanceForm - - - No book selected! - Ingen bok vald! - - - SlideController - - - Move to live - Flytta till live - - - Ui_EditVerseDialog - - - Other - Övrigt - - - Ui_EditSongDialog - - - Theme - Tema - - - ServiceManager - - - Save Service - Spara Mötesplanering - - - Ui_SongUsageDetailDialog - - - Select Date Range - Välj datumspann - - - Ui_MainWindow - - - Save the current service to disk - Spara nuvarande mötesplanering till disk - - - BibleMediaItem - - - Chapter: - Kapitel: - - - Search - Sök - - - PresentationTab - - - Available Controllers - Tillgängliga Presentationsprogramjag kollade på programmet, och under controllers listas alla presentationsprogram. Jag tycker det är bra som det är. - - - ImportWizardForm - - - Open Verses CSV file - Öppna Verser CSV-fil - - - TopicsForm - - - Error - Fel - - - RemoteTab - - - Remotes Receiver Port - Mottagarport för fjärrstyrning - - - Ui_MainWindow - - - &View - &Visa - - - Ui_AmendThemeDialog - - - Normal - Normal - - - Ui_OpenLPExportDialog - - - Close - Stäng - - - Ui_BibleImportWizard - - - Username: - Användarnamn: - - - ThemeManager - - - Edit Theme - Redigera tema - - - SlideController - - - Preview - Förhandsgranska - - - Ui_AlertDialog - - - Alert Message - Larmmeddelande - - - ImportWizardForm - - - Finished import. - Importen är färdig. - - - GeneralTab - - - Show blank screen warning - Visa varning vid tom skärm - - - ImportWizardForm - - - You need to specify a file of Bible verses to import. - Du måste specificera en fil med Bibelverser att importera. - - - AlertsTab - - - Location: - Plats: - - - Ui_EditSongDialog - - - Authors, Topics && Book - Författare, ämnen && bok - - - EditSongForm - - - You need to enter some verses. - Du måste skriva in några verser. - - - Ui_BibleImportWizard - - - Download Options - Alternativ för nedladdning - - - BiblePlugin - - - <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. - <strong>Bibel Plugin</strong><br /> Det här pluginprogrammet visar Bibelverser från olika källor på skärmen. - - - Ui_EditSongDialog - - - Copyright Information - Copyright-information - - - Ui_MainWindow - - - &Export - &Exportera - - - Ui_AmendThemeDialog - - - Bold - Fetstil - - - SongsPlugin - - - Export songs in OpenLP 2.0 format - Exportera sånger i formatet OpenLP 2.0 - - - MediaManagerItem - - - Load a new - Ladda ny - - - AlertEditForm - - - Missing data - Data saknas - - - SongsPlugin - - - <b>Song Plugin</b> <br>This plugin allows Songs to be managed and displayed.<br> - <b>Sång Plugin</b> <br>Det här pluginprogrammet visar och hanterar sånger.<br> - - - Ui_AmendThemeDialog - - - Footer Font - Sidfot-font - - - EditSongForm - - - Invalid verse entry - vX - Ogiltig vers - vX - - - MediaManagerItem - - - Delete the selected item - Ta bort det valda objektet - - - Ui_OpenLPExportDialog - - - Export - Exportera - - - Ui_BibleImportWizard - - - Location: - Placering: - - - BibleMediaItem - - - Keep - Behåll - - - SongUsagePlugin - - - Generate report on Song Usage - Generera rapport på Sånganvändning - - - Ui_EditSongDialog - - - Topic - Ämne - - - Ui_MainWindow - - - &Open - &Öppna - - - AuthorsForm - - - You haven't set a display name for the author, would you like me to combine the first and last names for you? - Du har inte ställt in ett visningsnamn för låtskrivaren, vill du att programmet kombinerar förnamnet och efternamnet åt dig? - - - AmendThemeForm - - - Slide Height is %s rows - Bildens höjd är %s rader - - - Ui_EditVerseDialog - - - Pre-Chorus - BryggaI think it' better to keep the english translation here... --wezzy: why? "för-refräng" doesn't work, but according to sources (wikipedia ex) it can be compared to bridge and then the translation would be brygga. - - - Ui_EditSongDialog - - - Lyrics: - Sångtexter: - - - Ui_AboutDialog - - - Project Lead - Raoul "superfly" Snyman - -Developers - Tim "TRB143" Bentley - Jonathan "gushie" Corwin - Michael "cocooncrash" Gorven - Scott "sguerrieri" Guerrieri - Raoul "superfly" Snyman - Maikel Stuivenberg - Martin "mijiti" Thompson - Jon "Meths" Tibble - Carsten "catini" Tingaard - -Testers - Wesley "wrst" Stout - Projektledning -Raoul "superfly" Snyman - -Utvecklare -Tim "TRB143" Bentley -Jonathan "gushie" Corwin -Michael "cocooncrash" Gorven -Scott "sguerrieri" Guerrieri -Raoul "superfly" Snyman -Maikel Stuivenberg -Martin "mijiti" Thompson -Jon "Meths" Tibble -Carsten "catini" Tingaard - -Testare -Wesley "wrst" Stout - - - SongMediaItem - - - Titles - Titlar - - - Ui_OpenLPExportDialog - - - Lyrics - Sångtexter - - - PresentationMediaItem - - - Present using: - Presentera genom: - - - SongMediaItem - - - Clear - Töm - - - ServiceManager - - - &Live Verse - &Live-vers - - - Ui_OpenSongImportDialog - - - Progress: - Framsteg: - - - Ui_MainWindow - - - Toggle Theme Manager - Växla temahanteraren - - - Ui_AlertDialog - - - Alert Text: - Alarmtext: - - - Ui_EditSongDialog - - - Edit - Redigera - - - AlertsTab - - - Font Color: - Fontfärg: - - - Ui_AmendThemeDialog - - - Theme Maintenance - TemaunderhållSounds a bit strange... - - - CustomTab - - - Custom Display - Anpassad Visning - - - Ui_OpenSongExportDialog - - - Title - Titel - - - Ui_AmendThemeDialog - - - <Color1> - <Färg1> - - - Ui_EditSongDialog - - - Authors - Låtskrivare - - - ThemeManager - - - Export Theme - Exportera tema - - - ImageMediaItem - - - No items selected... - Inga objekt valda... - - - Ui_SongBookDialog - - - Name: - Namn: - - - Ui_AuthorsDialog - - - Author Maintenance - Författare underhåll - - - Ui_AmendThemeDialog - - - Font Footer - Font-sidfot - - - BiblesTab - - - Verse Display - Versvisningout of context - - - Ui_MainWindow - - - &Options - &Alternativ - - - BibleMediaItem - - - Results: - Resultat: - - - Ui_OpenLPExportDialog - - - Full Song List - Full Sånglista - - - ServiceManager - - - Move to &top - Flytta till &toppen - - - SlideController - - - Move to last - Flytta till sist - - - Ui_OpenLPExportDialog - - - Progress: - Framsteg: - - - Ui_SongMaintenanceDialog - - - Add - Lägg till - - - SongMaintenanceForm - - - Are you sure you want to delete the selected author? - Är du säker på att du vill ta bort den valda låtskrivaren? - - - SongUsagePlugin - - - Song Usage Status - Sånganvändningsstatus - - - BibleMediaItem - - - Verse Search - Sök vers - - - Ui_SongBookDialog - - - Edit Book - Redigera bok - - - EditSongForm - - - Save && Preview - Spara && förhandsgranska - - - Ui_SongBookDialog - - - Publisher: - Utgivare: - - - Ui_AmendThemeDialog - - - Font Weight: - Teckentjocklek: - - - Ui_BibleImportWizard - - - Bible Filename: - Bibel-filnamn: - - - Ui_AmendThemeDialog - - - Transparent - Genomskinlig - - - SongMediaItem - - - Search - Sök - - - Ui_BibleImportWizard - - - Format: - Format: - - - Ui_AmendThemeDialog - - - Background - Bakgrund - - - Ui_BibleImportWizard - - - Importing - Importerar - - - Ui_customEditDialog - - - Edit all slides - Redigera alla bilder - - - SongsTab - - - Enable search as you type: - Aktivera sök-medan-du-skriver: - - - Ui_MainWindow - - - Ctrl+S - Ctrl+S - - - SongMediaItem - - - Authors - Författare - - - Ui_PluginViewDialog - - - Active - Aktiv - - - SongMaintenanceForm - - - Couldn't add your author. - Kunde inte lägga till din låtskrivare. - - - Ui_MainWindow - - - Ctrl+O - Ctrl+O - - - Ctrl+N - Ctrl+N - - - Ui_AlertEditDialog - - - Edit - Redigera - - - Ui_EditSongDialog - - - Song Editor - Sångredigerare - - - AlertsTab - - - Font - Font - - - SlideController - - - Edit and re-preview Song - Ändra och åter-förhandsgranska sång - - - Delay between slides in seconds - Fördröjning mellan bilder, i sekunder - - - MediaManagerItem - - - &Edit - &Redigera - - - Ui_AmendThemeDialog - - - Vertical - Vertikal - - - Width: - Bredd: - - - ThemesTab - - - Global level - Global nivå - - - ThemeManager - - - You are unable to delete the default theme. - Du kan inte ta bort standardtemat. - - - BibleMediaItem - - - Version: - Version: - - - Ui_AboutDialog - - - OpenLP <version> build <revision> - Open Source Lyrics Projection + + + + AboutForm + + + About OpenLP + Om OpenLP + + + + OpenLP <version><revision> - Open Source Lyrics Projection OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if OpenOffice.org, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. Find out more about OpenLP: http://openlp.org/ OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version> bygge <revision> - Open Source Lyrics Projection + + + + + About + Om + + + + Project Lead + Raoul "superfly" Snyman -OpenLP är en gratis presentationsmjukvara för kyrkor, eller projektionsmjukvara för sångtexter, använt för att visa sånger, Bibelverser, videor, bilder, och till och med presentationer (om OpenOffice.org, PowerPoint eller PowerPoint Viewer är installerat) för lovsång genom en dator och en projektor. +Developers + Tim "TRB143" Bentley + Jonathan "gushie" Corwin + Michael "cocooncrash" Gorven + Scott "sguerrieri" Guerrieri + Raoul "superfly" Snyman + Martin "mijiti" Thompson + Jon "Meths" Tibble -Få reda på mer om OpenLP: http://openlp.org/ +Contributors + Meinert "m2j" Jordan + Christian "crichter" Richter + Maikel Stuivenberg + Carsten "catini" Tingaard -OpenLP är utvecklad och underhållen av frivilliga. Om du vill se fler kristna mjukvaror utvecklas, vänligen bidra genom knappen nedan.Pretty long text, puh - - - SongsPlugin +Testers + Philip "Phill" Ridout + Wesley "wrst" Stout (lead) + +Packagers + Thomas "tabthorpe" Abthorpe (FreeBSD) + Tim "TRB143" Bentley (Fedora) + Michael "cocooncrash" Gorven (Ubuntu) + Matthias "matthub" Hub (Mac OS X) + Raoul "superfly" Snyman (Windows) + + + - - OpenLP 2.0 - OpenLP 2.0 - - - ServiceManager + + Credits + Credits + - - New Service - Ny mötesplanering - - - Ui_TopicsDialog + + Copyright © 2004-2010 Raoul Snyman +Portions copyright © 2004-2010 Tim Bentley, Jonathan Corwin, Michael Gorven, Scott Guerrieri, Christian Richter, Maikel Stuivenberg, Martin Thompson, Jon Tibble, Carsten Tinggaard + +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See below for more details. + + +GNU GENERAL PUBLIC LICENSE +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. + +Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. + +The precise terms and conditions for copying, distribution and modification follow. + +GNU GENERAL PUBLIC LICENSE +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: + +a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. + +b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. + +c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. + +3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: + +a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, + +c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. + +If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. + +7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. + +This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version', you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. + +<one line to give the program's name and a brief idea of what it does.> +Copyright (C) <year> <name of author> + +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this when it starts in an interactive mode: + +Gnomovision version 69, Copyright (C) year name of author +Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type "show w". +This is free software, and you are welcome to redistribute it under certain conditions; type "show c" for details. + +The hypothetical commands "show w" and "show c" should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than "show w" and "show c"; they could even be mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: + +Yoyodyne, Inc., hereby disclaims all copyright interest in the program "Gnomovision" (which makes passes at compilers) written by James Hacker. + +<signature of Ty Coon>, 1 April 1989 +Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. + + - - Topic name: - Ämnesnamn: - - - Ui_BibleImportWizard + + License + Licens + - - License Details - Licensdetaljer - - - Ui_AboutDialog + + Contribute + Bidra + - - License - Licens - - - OpenSongBible + + Close + Stäng + - - Importing - Importerar - - - Ui_AmendThemeDialog + + build %s + + + + + AlertsPlugin - - Middle - Mitten - - - Ui_customEditDialog + + &Alert + &Alarm + - - Save - Spara - - - AlertEditForm + + <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen + <b>Alarm Plugin</b><br>Den här plugin:en kontrollerar visning av alarm på presentationsbilden + - - Item selected to Edit - Objekt vald för redigering - - - BibleMediaItem + + Show an alert message. + + + + + AlertsPlugin.AlertForm - - From: - Från: - - - Ui_AmendThemeDialog + + Alert Message + Larmmeddelande + - - Shadow Color: - Skuggfärg: - - - ServiceManager + + Alert &text: + + - - &Notes - &Anteckningar - - - Ui_MainWindow + + &Parameter(s): + + - - E&xit - &Avsluta - - - Ui_OpenLPImportDialog + + &New + &Ny + - - Close - Stäng - - - MainWindow + + &Save + &Spara + - - OpenLP Version Updated - OpenLP-version uppdaterad - - - Ui_customEditDialog + + &Delete + + - - Replace edited slide - Ersätt redigerad bild - - - EditCustomForm + + Displ&ay + + - - You need to enter a title - Du måste ange en titel - - - ThemeManager + + Display && Cl&ose + + - - Theme Exists - Temat finns - - - Ui_MainWindow + + &Close + + - - &Help - &Hjälp - - - Ui_EditVerseDialog + + New Alert + + - - Bridge - Brygga - - - Ui_OpenSongExportDialog + + You haven't specified any text for your alert. Please type in some text before clicking New. + + + + + AlertsPlugin.AlertsManager - - OpenSong Song Exporter - OpenSong sångexportör - - - Ui_AmendThemeDialog + + Alert message created and displayed. + + + + + AlertsPlugin.AlertsTab - - Vertical Align: - Vertikal justering: - - - TestMediaManager + + Alerts + Alarm + - - Item2 - Objekt2 + + Font + Font + - - Item1 - Objekt1 - - - Ui_AmendThemeDialog + + Font Name: + Fontnamn: + - - Top - Topp - - - BiblesTab + + Font Color: + Fontfärg: + - - Display Dual Bible Verses - Visa dubbla Bibelverser - - - Ui_MainWindow + + Background Color: + Bakgrundsfärg: + - - Toggle Service Manager - Växla mötesplaneringshanterare - - - Ui_EditSongDialog + + Font Size: + Fontstorlek: + - - Delete - Ta bort - - - MediaManagerItem + + pt + pt + - - &Add to Service - &Lägg till i mötesplanering - - + + Alert timeout: + Alarm timeout: + + + + s + s + + + + Location: + + + + + Preview + Förhandsgranska + + + + openlp.org + openlp.org + + + + Top + Topp + + + + Middle + Mitten + + + + Bottom + + + + AmendThemeForm - - First Color: - Första färg: - - - ThemesTab + + Theme Maintenance + Temaunderhåll + - - Song level - Sångnivå - - - alertsPlugin + + &Visibility: + + - - Show an alert message - Visa ett alarmmeddelande - - - Ui_MainWindow + + Opaque + Ogenomskinlig + - - Ctrl+F1 - Ctrl+F1 - - - SongMaintenanceForm + + Transparent + Genomskinlig + - - Couldn't save your topic. - Kunde inte spara ditt ämne. - - - Ui_MainWindow + + Type: + Typ: + - - Save the current service under a new name - Spara nuvarande mötesplanering under ett nytt namn - - - Ui_OpenLPExportDialog + + Solid Color + Solid Färg + - - Remove Selected - Ta bort valda - - - ThemeManager + + Gradient + Stegvis + - - Delete theme - Ta bort tema - - - ImageTab + + Image + Bild + - - Image Settings - Bildinställningar - - - Ui_OpenSongImportDialog + + Image: + Bild: + - - OpenSong Song Importer - OpenSong sångimportör - - - SongUsagePlugin + + Gradient: + + - - &Extract recorded data - &Extrahera inspelade data - - - AlertsTab + + Horizontal + Horisontellt + - - Font Name: - Fontnamn: - - - Ui_MainWindow + + Vertical + Vertikal + - - &Web Site - &Webbsida - - - MediaManagerItem + + Circular + Cirkulär + - - Send the selected item live - Skicka det valda objektet till live - - - Ui_MainWindow + + &Background + + - - M&ode - &Läge + + Main Font + Huvudfont + - - Translate the interface to your language - Översätt gränssnittet till ditt språk + + Font: + Font: + - - Service Manager - Mötesplaneringshanterare - - - CustomMediaItem + + Color: + + - - Custom - Anpassad - - - Ui_BibleImportWizard + + Size: + Storlek: + - - OSIS - OSIS - - - SongsPlugin + + pt + pt + - - openlp.org 1.0 - openlp.org 1.0 - - - Ui_MainWindow + + Wrap indentation: + + - - &Theme - &Tema - - - Ui_EditVerseDialog + + Adjust line spacing: + + - - Edit Verse - Redigera vers - - - Ui_MainWindow + + Normal + Normal + - - &Language - &Språk - - - ServiceManager + + Bold + Fetstil + - - Move to end - Flytta till slutet + + Italics + Kursiv + - - Your service is unsaved, do you want to save those changes before creating a new one ? - Din planering är inte sparad, vill du spara den innan du skapar en ny ? - - - Ui_OpenSongExportDialog + + Bold/Italics + Fetstil/kursiv + - - Remove Selected - Ta bort valda - - - SongMediaItem + + Style: + + - - Search: - Sök: - - - MainWindow + + Display Location + Visa plats + - - Save Changes to Service? - Spara ändringar till mötesplanering? + + X position: + + - - Your service has changed, do you want to save those changes? - Din planering har ändrats, vill du spara den? - - - ServiceManager + + Y position: + + - - &Delete From Service - &Ta bort från mötesplanering - - - Ui_EditSongDialog + + Width: + Bredd: + - - &Add to Song - &Lägg till i sång - - - Ui_MainWindow + + Height: + Höjd: + - - &About - &Om - - - ImportWizardForm + + px + px + - - You need to specify a version name for your Bible. - Du måste ange ett versionsnamn för din Bibel. - - - BiblesTab + + &Main Font + + - - Only show new chapter numbers - Visa bara nya kapitelnummer - - - Ui_AlertEditDialog + + Footer Font + Sidfot-font + - - Delete - Ta bort - - - EditCustomForm + + &Footer Font + + - - Error - Fel - - - ThemesTab + + Outline + Kontur + - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - Använd temat för mötesplaneringen, och ignorera sångernas indviduella teman. Om mötesplaneringen inte har ett tema använd då det globala temat. - - - AlertEditForm + + Outline size: + + - - Item selected to Add - Objekt valda att lägga till - - - Ui_AmendThemeDialog + + Outline color: + + - - Right - Höger - - - ThemeManager + + Show outline: + + - - Save Theme - (%s) - Spara tema - (%s) - - - MediaManagerItem + + Shadow + Skugga + - - Add the selected item(s) to the service - Lägg till valda objekt till planeringen - - - AuthorsForm + + Shadow size: + + - - Error - Fel - - - Ui_AmendThemeDialog + + Shadow color: + + - - Font Color: - Fontfärg: - - - Ui_OpenLPImportDialog + + Show shadow: + + - - Select openlp.org songfile to import: - Välj openlp.org sångfil att importera: - - - Ui_SettingsDialog + + Alignment + Justering + - - Settings - Alternativ - - - BiblesTab + + Horizontal align: + + - - Layout Style: - Layoutstil: - - - MediaManagerItem + + Left + Vänster + - - Edit the selected - Redigera valda - - - SlideController + + Right + Höger + - - Move to next - Flytta till nästa - - - Ui_MainWindow + + Center + Centrera + - - &Plugin List - &Pluginlista - - + + Vertical align: + + + + + Top + Topp + + + + Middle + Mitten + + + + Bottom + + + + + Slide Transition + Bildövergång + + + + &Other Options + + + + + Preview + Förhandsgranska + + + + All Files + + + + + Select Image + + + + + First color: + + + + + Second color: + + + + + Slide height is %s rows. + + + + + Theme &name: + + + + + Use default location + + + + + Transition active + + + + + BibleDB + + + Book not found + + + + BiblePlugin - - &Bible - &Bibel - - - Ui_BibleImportWizard + + <strong>Bible Plugin</strong><br />This plugin allows bible verses from different sources to be displayed on the screen during the service. + <strong>Bibel Plugin</strong><br /> Det här pluginprogrammet visar Bibelverser från olika källor på skärmen. + - - Web Download - Webbnedladdning - - - Ui_AmendThemeDialog + + &Bible + &Bibel + + + + BiblesPlugin,BiblesTab - - Horizontal - Horisontellt - - - ImportWizardForm + + Bibles + Biblar + + + + BiblesPlugin.BiblesTab - - Open OSIS file - Öppna OSIS-fil - - - Ui_AmendThemeDialog + + Verse Display + Versvisning + - - Circular - Cirkulär - - - PresentationMediaItem + + Only show new chapter numbers + Visa bara nya kapitelnummer + - - Automatic - Automatisk - - - SongMaintenanceForm + + Layout style: + + - - Couldn't save your book. - Kunde inte spara din bok. - - - Ui_AmendThemeDialog + + Display style: + + - - pt - pt - - - Ui_MainWindow + + Bible theme: + + - - &Add Tool... - &Lägg till verktyg... - - - SongMaintenanceForm + + Verse Per Slide + + - - Delete Topic - Ta bort ämne - - - Ui_OpenLPImportDialog + + Verse Per Line + + - - Lyrics - Sångtexter - - - BiblesTab + + Continuous + + - - No brackets - Ingen grupp - - - Ui_AlertEditDialog + + No Brackets + + - - Maintain Alerts - Underhåll alarm - - - Ui_AmendThemeDialog + + ( And ) + + - - px - px - - - ServiceManager + + { And } + + - - Select a theme for the service - Välj ett tema för planeringen - - - ThemesTab + + [ And ] + + - - Themes - Teman - - - Ui_PluginViewDialog + + Note: +Changes do not affect verses already in the service. + + - - Status: - Status: - - - Ui_EditSongDialog + + Display dual Bible verses + + + + + BiblesPlugin.ImportWizardForm - - CCLI Number: - CCLI-nummer: - - - ImportWizardForm + + Bible Import Wizard + Bibelimport-guide + - - This Bible already exists! Please import a different Bible or first delete the existing one. - Bibeln existerar redan! Importera en annan BIbel eller ta bort den som finns. - - - Ui_MainWindow + + Welcome to the Bible Import Wizard + Välkommen till guiden för Bibelimport + - - &Translate - &Översätt - - - BiblesTab + + This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. + Den här guiden hjälper dig importera biblar från en mängd olika format. Klicka på nästa-knappen nedan för att börja proceduren genom att välja ett format att importera från. + - - Bibles - Biblar - - - Ui_SongMaintenanceDialog + + Select Import Source + Välj importkälla + - - Authors - Författare - - - SongUsageDetailForm + + Select the import format, and where to import from. + Välj format för import, och plats att importera från. + - - Output File Location - Utfil sökväg - - - BiblesTab + + Format: + Format: + - - { and } - { och } - - - GeneralTab + + OSIS + OSIS + - - Prompt to save Service before starting New - Fråga om att spara mötesplanering innan en ny skapas - - - ImportWizardForm + + CSV + CSV + - - Starting import... - Påbörjar import... - - - BiblesTab + + OpenSong + OpenSong + - - Note: -Changes don't affect verses already in the service - Observera:: -Ändringar påverkar inte verser som redan finns i mötesplaneringen - - - Ui_EditVerseDialog + + Web Download + Webbnedladdning + - - Intro - Intro - - - ServiceManager + + File location: + + - - Move up order - Flytta upp orderOrder as in opposit to messy, or order as a general gives? Current translatation is the second, the order a general gives, however, hopefully this order is less violent - - - PresentationTab + + Books location: + + - - available - tillgänglig - - - ThemeManager + + Verse location: + + - - default - standard - - - SongMaintenanceForm + + Bible filename: + + - - Delete Author - Ta bort låtskrivare - - - Ui_AmendThemeDialog + + Location: + + - - Display Location - Visa plats - - - Ui_PluginViewDialog + + Crosswalk + Crosswalk + - - Version: - Version: - - - Ui_AlertEditDialog + + BibleGateway + BibleGateway + - - Add - Lägg till - - - GeneralTab + + Bible: + Bibel: + - - General - Allmänt - - - Ui_AmendThemeDialog + + Download Options + Alternativ för nedladdning + - - Y Position: - Y-position: - - - ServiceManager + + Server: + Server: + - - Move down order - Flytta ner order - - - BiblesTab + + Username: + Användarnamn: + - - verse per slide - vers per bild - - - Ui_AmendThemeDialog + + Password: + Lösenord: + - - Show Shadow: - Visa skugga: - - - AlertsTab + + Proxy Server (Optional) + Proxyserver (Frivilligt) + - - Preview - Förhandsgranska - - - alertsPlugin + + License Details + Licensdetaljer + - - <b>Alerts Plugin</b><br>This plugin controls the displaying of alerts on the presentations screen - <b>Alarm Plugin</b><br>Den här plugin:en kontrollerar visning av alarm på presentationsbilden - - - GeneralTab + + Set up the Bible's license details. + Skriv in Bibelns licensdetaljer. + - - Show the splash screen - Visa startbilden - - - Ui_MainWindow + + Version name: + + - - New Service - Ny Mötesplanering - - - SlideController + + Copyright: + Copyright: + - - Move to first - Flytta till första - - - Ui_MainWindow + + Permission: + Rättigheter: + - - &Online Help - &Online-hjälp - - - SlideController + + Importing + Importerar + - - Blank Screen - Töm skärmTöm skärm är ett kommando, tom skärm är ett påstående. Jag tror texten ska vara ett kommando, dvs att man ska tömma skärmen - - - Ui_MainWindow + + Please wait while your Bible is imported. + Vänligen vänta medan din Bibel importeras. + - - Save Service - Spara Planering + + Ready. + Redo. + - - Save &As... - S&para som... + + Invalid Bible Location + Felaktig bibelplacering + - - Toggle the visibility of the Media Manager - Växla mediahanterarens synlighet - - - BibleMediaItem + + You need to specify a file to import your Bible from. + Du måste ange en fil att importera dina Biblar från. + - - No Book Found - Ingen bok hittades - - - Ui_EditSongDialog + + Invalid Books File + Ogiltig bokfil + - - Add - Lägg till - - - alertsPlugin + + You need to specify a file with books of the Bible to use in the import. + Du måste välja en fil med Bibelböcker att använda i importen. + - - &Alert - &Alarm - - - BibleMediaItem + + Invalid Verse File + Ogiltid versfil + - - Advanced - Avancerat - - - ImageMediaItem + + You need to specify a file of Bible verses to import. + Du måste specificera en fil med Bibelverser att importera. + - - Image(s) - Bilder - - - Ui_MainWindow + + Invalid OpenSong Bible + Ogiltig OpenSong-bibel + - - F11 - F11 + + You need to specify an OpenSong Bible file to import. + Du måste ange en OpenSong Bibel-fil att importera. + - - F10 - F10 + + Empty Version Name + Tomt versionsnamn + - - F12 - F12 - - - Ui_BibleImportWizard + + You need to specify a version name for your Bible. + Du måste ange ett versionsnamn för din Bibel. + - - Select the import format, and where to import from. - Välj format för import, och plats att importera från. - - + + Empty Copyright + Tom copyright-information + + + + You need to set a copyright for your Bible! Bibles in the Public Domain need to be marked as such. + Du måste infoga copyright-information för din Bibel! Biblar i den publika domänen måste innehålla det. + + + + Bible Exists + Bibel existerar + + + + This Bible already exists! Please import a different Bible or first delete the existing one. + Bibeln existerar redan! Importera en annan BIbel eller ta bort den som finns. + + + + Open OSIS File + + + + + Open Books CSV File + + + + + Open Verses CSV File + + + + + Open OpenSong Bible + Öppna OpenSong Bibel + + + + Starting import... + Påbörjar import... + + + + Finished import. + Importen är färdig. + + + + Your Bible import failed. + Din Bibelimport misslyckades. + + + + BiblesPlugin.MediaItem + + + Bible + Bibel + + + + Quick + Snabb + + + + Advanced + Avancerat + + + + Version: + Version: + + + + Dual: + Dubbel: + + + + Search type: + + + + + Find: + Hitta: + + + + Search + Sök + + + + Results: + Resultat: + + + + Book: + Bok: + + + + Chapter: + Kapitel: + + + + Verse: + Vers: + + + + From: + Från: + + + + To: + Till: + + + + Verse Search + Sök vers + + + + Text Search + Textsökning + + + + Clear + + + + + Keep + Behåll + + + + No Book Found + Ingen bok hittades + + + + No matching book could be found in this Bible. + Ingen matchande bok kunde hittas i den här Bibeln. + + + + etc + + + + + Bible not fully loaded. + + + + + BiblesPlugin.Opensong + + + Importing + Importerar + + + CustomPlugin - - <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> - <b>Anpassad Plugin</b><br>Det här pluginprogrammet tillåter visning av bilder på samma sätt som sånger. Den ger större frihet över sångpluginprogrammet.<br> - - - Ui_MainWindow - - - Alt+F7 - Alt+F7 - - - Add an application to the list of tools - Lägg till ett program i listan av verktyg - - - MediaPlugin - - - <b>Media Plugin</b><br>This plugin allows the playing of audio and video media - <b>Media Plugin</b><br>Den här plugin:en tillåter uppspelning av ljud och video - - - ServiceManager - - - Move &down - Flytta &ner - - - BiblesTab - - - Bible Theme: - Bibeltema: - - - SongsPlugin - - - Export songs in openlp.org 1.0 format - Exportera sånger i openlp.org 1.0-format - - - Ui_MainWindow - - - Theme Manager - Temahanterare - - - AlertsTab - - - Alerts - Alarm - - - Ui_customEditDialog - - - Move slide down 1 - Flytta ner bild ett steg - - - Ui_AmendThemeDialog - - - Font: - Font: - - - ServiceManager - - - Load an existing service - Ladda en planering - - - Ui_MainWindow - - - Toggle the visibility of the Theme Manager - Växla Temahanterarens synlighet - - - PresentationTab - - - Presentations - Presentationer - - - SplashScreen - - - Starting - Startar - - - ImageTab - - - Slide Loop Delay: - Fördröjning av bild-loop: - - - SlideController - - - Verse - Vers - - - AlertsTab - - - Alert timeout: - Alarm timeout: - - - Ui_MainWindow - - - &Preview Pane - &Förhandsgranskning - - - MediaManagerItem - - - Add a new - Lägg till en ny - - - ThemeManager - - - Select Theme Import File - Välj tema importfil - - - New Theme - Nytt Tema - - - MediaMediaItem - - - Media - Media - - - Ui_AmendThemeDialog - - - Preview - Förhandsgranska - - - Outline Size: - Konturstorlek: - - - Ui_OpenSongExportDialog - - - Progress: - Progress: - - - AmendThemeForm - - - Second Color: - Andrafärg: - - - Ui_EditSongDialog - - - Theme, Copyright Info && Comments - Tema, copyright-info && kommentarer - - - Ui_AboutDialog - - - Credits - Credits - - - BibleMediaItem - - - To: - Till: - - - Ui_EditSongDialog - - - Song Book - Sångbok - - - Ui_OpenLPExportDialog - - - Author - Låtskrivare - - - Ui_AmendThemeDialog - - - Wrap Indentation - IndragUnclear what this option does to the text, since it doesn't happen anything when changing it in the program. - - - ThemeManager - - - Import a theme - Importera ett tema - - - ImageMediaItem - - - Image - Bild - - - BibleMediaItem - - - Clear - Töm - - - Ui_MainWindow - - - Save Service As - Spara mötesplanering som... - - - Ui_AlertDialog - - - Cancel - Avbryt - - - Ui_OpenLPImportDialog - - - Import - Importera - - - Ui_EditVerseDialog - - - Chorus - Refräng - - - Ui_EditSongDialog - - - Edit All - Redigera alla - - - AuthorsForm - - - You need to type in the last name of the author. - Du måste ange författarens efternamn. - - - SongsTab - - - Songs Mode - Sångläge - - - Ui_AmendThemeDialog - - - Left - Vänster - - - RemotesPlugin - - - <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer.<br>The Primary use for this would be to send alerts from a creche - <b>Fjärrstyrning Plugin</b><br>Den här plugin:en kan skicka meddelanden till OpenLP-program på en annan dator<br>Användningen vore framför allt att skicka alarm från ett barnrumwhat's a creche? A room in a church where children kan play during the service? Current translation is that, however, translation software suggests a home for children without parents. That didn't feel too right though... - - - ImageTab - - - Images - Bilder - - - BibleMediaItem - - - Verse: - Vers: - - - Ui_OpenLPExportDialog - - - openlp.org Song Exporter - openlp.org sångexportör - - - Song Export List - Sång exportlista - - - ThemeManager - - - Export theme - Exportera tema - - - Ui_SongMaintenanceDialog - - - Delete - Ta bort - - - Ui_AmendThemeDialog - - - Theme Name: - Namn på tema: - - - Ui_AboutDialog - - - About OpenLP - Om OpenLP - - - Ui_MainWindow - - - Toggle the visibility of the Service Manager - Växla mötesplaneringshanterarens synlighet - - - PresentationMediaItem - - - A presentation with that filename already exists. - En presentation med det namnet finns redan. - - - ImageMediaItem - - - Allow the background of live slide to be overridden - Tillåt live-bildens bakgrund att ignoreras - - - SongUsageDeleteForm - - - Are you sure you want to delete selected Song Usage data? - Vill du verkligen ta bort vald sånganvändningsdata? - - - AlertsTab - - - openlp.org - openlp.org - - - ImportWizardForm - - - Invalid Books File - Ogiltig bokfil - - - Ui_OpenLPImportDialog - - - Song Title - Sångtitel - - - MediaManagerItem - - - &Show Live - &Visa Live - - - AlertsTab - - - Keep History: - Behåll historik: - - - Ui_AmendThemeDialog - - - Image: - Bild: - - - Ui_customEditDialog - - - Set Theme for Slides - Sätt Tema för Bilder - - - Ui_MainWindow - - - More information about OpenLP - Mer information om OpenLP - - - AlertsTab - - - Background Color: - Bakgrundsfärg: - - - SongMaintenanceForm - - - No topic selected! - Inget ämne valt! - - - Ui_MainWindow - - - &Media Manager - &Mediahanterare - - - &Tools - &Verktyg - - - AmendThemeForm - - - Background Color: - Bakgrundsfärg: - - - Ui_EditSongDialog - - - A&dd to Song - Lägg till i sång - - - Title: - Titel: - - + + <b>Custom Plugin</b><br>This plugin allows slides to be displayed on the screen in the same way songs are. This plugin provides greater freedom over the songs plugin.<br> + <b>Anpassad Plugin</b><br>Det här pluginprogrammet tillåter visning av bilder på samma sätt som sånger. Den ger större frihet över sångpluginprogrammet.<br> + + + + CustomPlugin.CustomTab + + + Custom + + + + + Custom Display + Anpassad Visning + + + + Display footer + + + + + CustomPlugin.EditCustomForm + + + Edit Custom Slides + Redigera anpassad bild + + + + Move slide up once position. + + + + + Move slide down one position. + + + + + &Title: + + + + + Add New + Lägg till ny + + + + Add a new slide at bottom. + + + + + Edit + Redigera + + + + Edit the selected slide. + + + + + Edit All + Redigera alla + + + + Edit all the slides at once. + + + + + Save + Spara + + + + Save the slide currently being edited. + + + + + Delete + Ta bort + + + + Delete the selected slide. + + + + + Clear + + + + + Clear edit area + Töm redigeringsområde + + + + Split Slide + + + + + Split a slide into two by inserting a slide splitter. + + + + + The&me: + + + + + &Credits: + + + + + Save && Preview + Spara && förhandsgranska + + + + Error + Fel + + + + You need to type in a title. + + + + + You need to add at least one slide + + + + + You have one or more unsaved slides, please either save your slide(s) or clear your changes. + + + + + CustomPlugin.MediaItem + + + Custom + + + + + You haven't selected an item to edit. + + + + + You haven't selected an item to delete. + + + + + DisplayTab + + + Displays + + + + + Default Settings + + + + + X: + + + + + Y: + + + + + Height: + Höjd: + + + + Width: + Bredd: + + + + Custom Settings + + + + + Width + + + + + Override display settings + + + + GeneralTab - - Screen - Skärm - - - SongMaintenanceForm + + CCLI Details + CCLI-detaljer + - - This topic can't be deleted, it is currently assigned to at least one song. - Ämnet kan inte tas bort, den är associerad med åtminstone en sång. - - - AlertsTab + + primary + primär + - - s - s - - - Ui_AlertEditDialog + + Application Startup + Programstart + - - Clear - Töm - - - Ui_BibleImportWizard + + Select monitor for output display: + Välj skärm för utsignal: + - - Please wait while your Bible is imported. - Vänligen vänta medan din Bibel importeras. - - - MediaManagerItem + + Application Settings + Programinställningar + - - No items selected... - Inget valt objekt... - - - Ui_OpenLPImportDialog + + SongSelect Username: + SongSelect Användarnamn: + - - Select All - Välj allt - - - Ui_AmendThemeDialog + + CCLI Number: + CCLI-nummer: + - - Font Main - Huvudfont - - - Ui_OpenLPImportDialog + + Automatically open the last service + Öppna automatiskt den senaste planeringen + - - Title - Titel - - - Ui_OpenSongExportDialog + + Preview Next Song from Service Manager + Förhandsgranska nästa sång från mötesplaneringen + - - Select OpenSong song folder: - Välj OpenSong-mapp: - - - Ui_MainWindow + + Show blank screen warning + Visa varning vid tom skärm + - - Toggle Media Manager - Växla mediahanterare - - - SongUsagePlugin + + Prompt to save Service before starting New + Fråga om att spara mötesplanering innan en ny skapas + - - &Song Usage - &Sånganvändning - - - GeneralTab + + General + Allmänt + - - Monitors - Skärmar - - - EditCustomForm + + Show the splash screen + Visa startbilden + - - You need to enter a slide - Du måste ange en bild - - - ThemeManager + + Screen + Skärm + - - You have not selected a theme. - Du har inte valt ett tema. - - - Ui_EditVerseDialog + + Monitors + Skärmar + - - Verse Type - Verstyp - - - ImportWizardForm + + SongSelect Password: + SongSelect-lösenord: + - - You need to specify a file to import your Bible from. - Du måste ange en fil att importera dina Biblar från. - - - Ui_EditSongDialog - - - Comments - Kommentarer - - - AlertsTab - - - Bottom - Botten - - - Ui_MainWindow - - - Create a new Service - Skapa en ny mötesplanering - - - AlertsTab - - - Top - Topp - - - ServiceManager - - - &Preview Verse - &Förhandsgranska Vers - - - Ui_PluginViewDialog - - - TextLabel - TextLabel - - - AlertsTab - - - Font Size: - Fontstorlek: - - - Ui_PluginViewDialog - - - About: - Om: - - - Inactive - Inaktiv - - - Ui_OpenSongExportDialog - - - Ready to export - Redo att exportera - - - Export - Exportera - - - Ui_PluginViewDialog - - - Plugin List - Pluginlista - - - Ui_AmendThemeDialog - - - Transition Active: - Övergång aktiv: - - - Ui_BibleImportWizard - - - Proxy Server (Optional) - Proxyserver (Frivilligt) - - - Ui_EditSongDialog - - - &Manage Authors, Topics, Books - &Hantera författare, ämnen, böcker - - - Ui_OpenLPExportDialog - - - Ready to export - Redo att exportera - - - ImageMediaItem - - - Images (*.jpg *.jpeg *.gif *.png *.bmp);; All files (*) - Bilder (*.jpg *.jpeg *.gif *.png *.bmp);; Alla filer (*) - - - EditCustomForm - - - Save && Preview - Spara && förhandsgranska - - - Ui_OpenLPExportDialog - - - Select All - Välj allt - - - Ui_SongUsageDetailDialog - - - to - till - - - Ui_AmendThemeDialog - - - Size: - Storlek: - - - MainWindow - - - OpenLP Main Display Blanked - OpenLP huvuddisplay tömd - - - Ui_OpenLPImportDialog - - - Remove Selected - Ta bort valda - - - ServiceManager - - - Move &up - Flytta &upp - - - ImportWizardForm - - - You need to specify an OpenSong Bible file to import. - Du måste ange en OpenSong Bibel-fil att importera. - - - PresentationMediaItem - - - Select Presentation(s) - Välj presentation(er) - - - File exists - Fil finns - - - Ui_OpenSongImportDialog - - - Ready to import - Redo att importera - - - SlideController - - - Stop continuous loop - Stoppa upprepad loop - - - s - s - - + + Display if a single screen + + + + ImagePlugin - - <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> - <b>Bild Plugin</b><br>Visar bilder av alla typer. Om flera bilder väljs och presenteras kan de visas en oändlig loop. <br<br> Om <i>Ignorera bakgrund</i> är valt och en bild markerad kommer sångerna visas med den markerade bilden som bakgrund, istället för bilen från temat.<br> - - - SongMediaItem + + <b>Image Plugin</b><br>Allows images of all types to be displayed. If a number of images are selected together and presented on the live controller it is possible to turn them into a timed loop.<br<br>From the plugin if the <i>Override background</i> is chosen and an image is selected any songs which are rendered will use the selected image from the background instead of the one provied by the theme.<br> + + + + + ImagePlugin.ImageTab - - Song Maintenance - Sångunderhåll - - - Ui_customEditDialog + + Images + Bilder + - - Edit - Redigera - - - Ui_AmendThemeDialog + + Image Settings + Bildinställningar + - - Gradient : - Stegvis : - - - ImportWizardForm + + Slide Loop Delay: + Fördröjning av bild-loop: + - - Invalid Verse File - Ogiltid versfil - - - EditSongForm + + sec + sek + + + + ImagePlugin.MediaItem - - Error - Fel - - - Ui_customEditDialog + + Image + Bild + - - Add New - Lägg till ny - - - Ui_AuthorsDialog + + Select Image(s) + Välj bild(er) + - - Display name: - Visningsnamn: - - - SongMaintenanceForm + + All Files + + - - Are you sure you want to delete the selected topic? - Är du säker på att du vill ta bort valt ämne? - - - Ui_AmendThemeDialog + + Replace Live Background + + - - Bold/Italics - Fetstil/kursiv - - - Ui_SongMaintenanceDialog + + You must select an item to delete. + + - - Song Maintenance - Sångunderhåll - - - Ui_BibleImportWizard + + Image(s) + Bilder + - - Welcome to the Bible Import Wizard - Välkommen till guiden för Bibelimport - - - SongsTab + + You must select an item to process. + + + + + LanguageManager - - Songs - Sånger - - - Ui_BibleImportWizard + + Language + + - - Password: - Lösenord: - - - Ui_MainWindow + + After restart new Language settings will be used. + + + + + MainWindow - - &Theme Manager - &Temahanterare - - + + The Main Display has been blanked out + Huvuddisplayen har rensats + + + + OpenLP Version Updated + OpenLP-version uppdaterad + + + + Save Changes to Service? + Spara ändringar till mötesplanering? + + + + OpenLP Main Display Blanked + OpenLP huvuddisplay tömd + + + + OpenLP 2.0 + OpenLP 2.0 + + + + English + Engelska + + + + &File + &Fil + + + + &Import + &Importera + + + + &Export + &Exportera + + + + &View + &Visa + + + + M&ode + &Läge + + + + &Tools + &Verktyg + + + + &Settings + &Inställningar + + + + &Language + &Språk + + + + &Help + &Hjälp + + + + Media Manager + Mediahanterare + + + + Service Manager + Mötesplaneringshanterare + + + + Theme Manager + Temahanterare + + + + &New + &Ny + + + + New Service + Ny mötesplanering + + + + Create a new service. + + + + + Ctrl+N + Ctrl+N + + + + &Open + &Öppna + + + + Open Service + Öppna Mötesplanering + + + + Open an existing service. + + + + + Ctrl+O + Ctrl+O + + + + &Save + &Spara + + + + Save Service + Spara Mötesplanering + + + + Save the current service to disk. + + + + + Ctrl+S + Ctrl+S + + + + Save &As... + S&para som... + + + + Save Service As + Spara mötesplanering som... + + + + Save the current service under a new name. + + + + + Ctrl+Shift+S + + + + + E&xit + &Avsluta + + + + Quit OpenLP + Stäng OpenLP + + + + Alt+F4 + Alt+F4 + + + + &Theme + &Tema + + + + &Configure OpenLP... + + + + + &Media Manager + &Mediahanterare + + + + Toggle Media Manager + Växla mediahanterare + + + + Toggle the visibility of the media manager. + + + + + F8 + F8 + + + + &Theme Manager + &Temahanterare + + + + Toggle Theme Manager + Växla temahanteraren + + + + Toggle the visibility of the theme manager. + + + + + F10 + F10 + + + + &Service Manager + &Mötesplaneringshanterare + + + + Toggle Service Manager + Växla mötesplaneringshanterare + + + + Toggle the visibility of the service manager. + + + + + F9 + F9 + + + + &Preview Panel + &Förhandsgranskning + + + + Toggle Preview Panel + Växla förhandsgranskningspanel + + + + Toggle the visibility of the preview panel. + + + + + F11 + F11 + + + + &Live Panel + + + + + Toggle Live Panel + + + + + Toggle the visibility of the live panel. + + + + + F12 + F12 + + + + &Plugin List + &Pluginlista + + + + List the Plugins + Lista Plugin + + + + Alt+F7 + Alt+F7 + + + + &User Guide + &Användarguide + + + + &About + &Om + + + + More information about OpenLP + Mer information om OpenLP + + + + Ctrl+F1 + Ctrl+F1 + + + + &Online Help + &Online-hjälp + + + + &Web Site + &Webbsida + + + + &Auto Detect + + + + + Use the system language, if available. + + + + + Set the interface language to %s + + + + + Add &Tool... + + + + + Add an application to the list of tools. + + + + + &Default + + + + + Set the view mode back to the default. + + + + + &Setup + + + + + Set the view mode to Setup. + + + + + &Live + &Live + + + + Set the view mode to Live. + + + + + Version %s of OpenLP is now available for download (you are currently running version %s). + +You can download the latest version from http://openlp.org + + + + + Your service has changed. Do you want to save those changes? + + + + + Default Theme: %s + + + + MediaManagerItem - - Preview the selected item - Förhandsgranska det valda objektet - - - Ui_BibleImportWizard + + You must select one or more items + Du måste välja ett eller flera objekt + - - Version Name: - Versionsnamn: - - - Ui_AboutDialog + + Delete the selected item + Ta bort det valda objektet + - - About - Om - - - MediaMediaItem + + &Add to Service + &Lägg till i mötesplanering + - - Select Media - Välj media - - - Ui_AmendThemeDialog + + Send the selected item live + Skicka det valda objektet till live + - - Horizontal Align: - Horisontell justering: - - + + Add the selected item(s) to the service + Lägg till valda objekt till planeringen + + + + &Show Live + &Visa Live + + + + Preview the selected item + Förhandsgranska det valda objektet + + + + No Items Selected + + + + + Import %s + + + + + Import a %s + + + + + Load %s + + + + + Load a new %s + + + + + New %s + + + + + Add a new %s + + + + + Edit %s + + + + + Edit the selected %s + + + + + Delete %s + + + + + Preview %s + + + + + Add %s to Service + + + + + &Edit %s + + + + + &Delete %s + + + + + &Preview %s + + + + + &Add to selected Service Item + + + + + You must select one or more items to preview. + + + + + You must select one or more items to send live. + + + + + You must select one or more items. + + + + + No items selected + + + + + No Service Item Selected + + + + + You must select an existing service item to add to. + + + + + Invalid Service Item + + + + + You must select a %s service item. + + + + + MediaPlugin + + + <b>Media Plugin</b><br>This plugin allows the playing of audio and video media + <b>Media Plugin</b><br>Den här plugin:en tillåter uppspelning av ljud och video + + + + MediaPlugin.MediaItem + + + Media + Media + + + + Select Media + Välj media + + + + Replace Live Background + + + + + You must select an item to delete. + + + + + OpenLP + + + Image Files + + + + + PluginForm + + + Plugin List + Pluginlista + + + + Plugin Details + Plugindetaljer + + + + Version: + Version: + + + + TextLabel + TextLabel + + + + About: + Om: + + + + Status: + Status: + + + + Active + Aktiv + + + + Inactive + Inaktiv + + + + %s (Inactive) + + + + + %s (Active) + + + + + %s (Disabled) + + + + + PresentationPlugin + + + <b>Presentation Plugin</b> <br> Delivers the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. + <b>Presentations Plugin</b> <br> Ger möjlighet att visa presentationer genom olika program. Tillgängliga presentationsprogram finns i en drop-down meny. + + + + PresentationPlugin.MediaItem + + + Presentation + Presentation + + + + Select Presentation(s) + Välj presentation(er) + + + + Automatic + Automatisk + + + + Present using: + Presentera genom: + + + + File exists + Fil finns + + + + A presentation with that filename already exists. + En presentation med det namnet finns redan. + + + + You must select an item to delete. + + + + + PresentationPlugin.PresentationTab + + + Presentations + Presentationer + + + + Available Controllers + Tillgängliga Presentationsprogram + + + + available + tillgänglig + + + + RemotePlugin + + + <b>Remote Plugin</b><br>This plugin provides the ability to send messages to a running version of openlp on a different computer via a web browser or other app<br>The Primary use for this would be to send alerts from a creche + + + + + RemotePlugin.RemoteTab + + + Remotes + Fjärrstyrningar + + + + Remotes Receiver Port + Mottagarport för fjärrstyrning + + + + ServiceItemEditForm + + + Service Item Maintenance + + + + + Up + + + + + Delete + Ta bort + + + + Down + + + + ServiceManager - - &Edit Item - &Redigera objekt - - - Ui_AmendThemeDialog + + Save Changes to Service? + Spara Ändringar till Planering? + - - Background Type: - Bakgrundstyp: - - - Ui_MainWindow + + Open Service + Öppna Mötesplanering + - - &Save - &Spara + + Move to top + Flytta längst upp + - - OpenLP 2.0 - OpenLP 2.0 - - + + 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 + + + Settings + Alternativ + + + + 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 + + + &Delete recorded data + &Ta bort inspelad data + + + + Start/Stop live song usage recording + Starta/Stoppa inspelning av sånganvändning + + + + <b>SongUsage Plugin</b><br>This plugin records the use of songs and when they have been used during a live service + <b>SongUsage Plugin</b><br>Det här pluginprogrammet spelar in användningen av sånger och när de använts i en planering + + + + Delete song usage to specified date + Ta bort sånganvändning fram till specificerat datum + + + + Generate report on Song Usage + Generera rapport på Sånganvändning + + + + Song Usage Status + Sånganvändningsstatus + + + + &Extract recorded data + &Extrahera inspelade data + + + + &Song Usage + &Sånganvändning + + + + SongsPlugin + + + &Song + &Sång + + + + Import songs using the import wizard. + + + + + Songs of Fellowship (temp menu item) + + + + + Import songs from the VOLS1_2.RTF, sof3words.rtf and sof4words.rtf supplied with the music books + + + + + Generic Document/Presentation Import (temp menu item) + + + + + Import songs from Word/Writer/Powerpoint/Impress + + + + + Open Songs of Fellowship file + + + + + Import Error + + + + + Error importing Songs of Fellowship file. +OpenOffice.org must be installed and you must be using an unedited copy of the RTF included with the Songs of Fellowship Music Editions + + + + + Open documents or presentations + + + + + <strong>Song Plugin</strong><br />This plugin allows songs to be managed and displayed. + + + + + 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 + + + Author Maintenance + Författare underhåll + + + + Display name: + Visningsnamn: + + + + First name: + Förnamn: + + + + Last name: + Efternamn: + + + + Error + Fel + + + + You need to type in the first name of the author. + Du måste ange låtskrivarens förnamn. + + + + You need to type in the last name of the author. + Du måste ange författarens efternamn. + + + + You haven't set a display name for the author, would you like me to combine the first and last names for you? + Du har inte ställt in ett visningsnamn för låtskrivaren, vill du att programmet kombinerar förnamnet och efternamnet åt dig? + + + + SongsPlugin.EditSongForm + + + Song Editor + Sångredigerare + + + + &Title: + + + + + Alt&ernate Title: + + + + + &Lyrics: + + + + + &Verse Order: + + + + + &Add + + + + + &Edit + &Redigera + + + + Ed&it All + + + + + &Delete + + + + + Title && Lyrics + Titel && Sångtexter + + + + Authors + + + + + &Add to Song + &Lägg till i sång + + + + &Remove + &Ta bort + + + + &Manage Authors, Topics, Books + &Hantera författare, ämnen, böcker + + + + Topic + Ämne + + + + A&dd to Song + Lägg till i sång + + + + R&emove + Ta &bort + + + + Song Book + Sångbok + + + + Authors, Topics && Book + Författare, ämnen && bok + + + + Theme + Tema + + + + New &Theme + + + + + Copyright Information + Copyright-information + + + + © + + + + + CCLI Number: + CCLI-nummer: + + + + Comments + Kommentarer + + + + Theme, Copyright Info && Comments + Tema, copyright-info && kommentarer + + + + Save && Preview + Spara && förhandsgranska + + + + Add Author + + + + + This author does not exist, do you want to add them? + + + + + 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? + + + + + SongsPlugin.EditVerseForm + + + Edit Verse + Redigera vers + + + + &Verse type: + + + + + &Insert + + + + + SongsPlugin.ImportWizardForm + + + No OpenLyrics Files Selected + + + + + You need to add at least one OpenLyrics song file to import from. + + + + + No OpenSong Files Selected + + + + + You need to add at least one OpenSong song file to import from. + + + + + No CCLI Files Selected + + + + + You need to add at least one CCLI file to import from. + + + + + No CSV File Selected + + + + + You need to specify a CSV file to import from. + + + + + Starting import... + Påbörjar import... + + + + Song Import Wizard + + + + + Welcome to the Song Import Wizard + + + + + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. + + + + + Select Import Source + Välj importkälla + + + + Select the import format, and where to import from. + Välj format för import, och plats att importera från. + + + + Format: + Format: + + + + OpenLyrics + + + + + OpenSong + OpenSong + + + + CCLI + + + + + CSV + CSV + + + + Add Files... + + + + + Remove File(s) + + + + + Filename: + + + + + Browse... + + + + + Importing + Importerar + + + + Please wait while your songs are imported. + + + + + Ready. + Redo. + + + + %p% + + + + + SongsPlugin.MediaItem + + + Song + Sång + + + + Song Maintenance + Sångunderhåll + + + + Maintain the lists of authors, topics and books + Hantera listorna över författare, ämnen och böcker + + + + Search: + Sök: + + + + Type: + Typ: + + + + Clear + + + + + Search + Sök + + + + Titles + Titlar + + + + Lyrics + Sångtexter + + + + Authors + + + + + %s (%s) + + + + + You must select an item to edit. + + + + + You must select an item to delete. + + + + + Delete song? + + + + + Delete %d songs? + + + + + Delete Confirmation + + + + + CCLI Licence: + CCLI-licens: + + + + SongsPlugin.SongBookForm + + + Edit Book + Redigera bok + + + + &Name: + + + + + &Publisher: + + + + + Error + Fel + + + + You need to type in a name for the book. + + + + + SongsPlugin.SongImport + + + copyright + + + + + © + + + + + SongsPlugin.SongMaintenanceForm + + + Song Maintenance + Sångunderhåll + + + + Authors + + + + + Topics + Ämnen + + + + Books/Hymnals + Böcker/psalmböcker + + + + &Add + + + + + &Edit + &Redigera + + + + &Delete + + + + + Error + Fel + + + + Couldn't add your author. + Kunde inte lägga till din låtskrivare. + + + + Couldn't add your topic. + Kunde inte lägga till ditt ämne. + + + + Couldn't add your book. + Kunde inte lägga till din bok. + + + + Couldn't save your author. + Kunde inte spara din låtskrivare. + + + + Couldn't save your topic. + Kunde inte spara ditt ämne. + + + + Couldn't save your book. + Kunde inte spara din bok. + + + + 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 can't be deleted, they are currently assigned to at least one song. + Låtskrivaren kan inte tas bort, den är associerad med åtminstone en sång. + + + + 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 can't be deleted, it is currently assigned to at least one song. + Ämnet kan inte tas bort, den är associerad med åtminstone en sång. + + + + 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 can't be deleted, it is currently assigned to at least one song. + Boken kan inte tas bort, den är associerad med åtminstone en sång. + + + + 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 + + + Songs + Sånger + + + + Songs Mode + Sångläge + + + + Enable search as you type + + + + + Display Verses on Live Tool bar + + + + + SongsPlugin.TopicsForm + + + Topic Maintenance + Ämnesunderhåll + + + + Topic name: + Ämnesnamn: + + + + Error + Fel + + + + You need to type in a topic name! + Du måste skriva in ett namn på ämnet! + + + + Splashscreen + + + Starting + Startar + + + + Splash Screen + Startbild + + + ThemeManager - - A theme with this name already exists, would you like to overwrite it? - Ett tema med detta namn finns redan, vill du spara över det? + + Import Theme + Importera tema + - - Export a theme - Exportera ett tema - - - AmendThemeForm + + Delete Theme + Ta bort tema + - - Open file - Öppna fil - - - Ui_TopicsDialog + + Error + Fel + - - Topic Maintenance - Ämnesunderhåll - - - Ui_customEditDialog + + File is not a valid theme. + Filen är inte ett giltigt tema. + - - Clear edit area - Töm redigeringsområde - - - Ui_AmendThemeDialog + + Edit Theme + Redigera tema + - - Show Outline: - Visa Kontur: + + Export Theme + Exportera tema + - - Gradient - Stegvis - - - SongBookForm + + You are unable to delete the default theme. + Du kan inte ta bort standardtemat. + - - You need to type in a book name! - Du måste ange ett boknamn! - - - ImportWizardForm + + Theme Exists + Temat finns + - - Open OpenSong Bible - Öppna OpenSong Bibel - - - Ui_MainWindow + + Save Theme - (%s) + Spara tema - (%s) + - - Look && &Feel - Utseende && &känsla - - - Ui_BibleImportWizard + + Select Theme Import File + Välj tema importfil + - - Ready. - Redo. - - - Ui_SongMaintenanceDialog + + New Theme + Nytt Tema + - - Books/Hymnals - Böcker/psalmböcker - - - Ui_AboutDialog + + You have not selected a theme. + Du har inte valt ett tema. + - - Contribute - Bidra - - - ServiceManager + + Create a new theme. + + - - Move to &bottom - Flytta längst &ner - - - Ui_BibleImportWizard + + Edit a theme. + + - - Books Location: - Bokplacering: - - - Ui_OpenSongExportDialog + + Delete a theme. + + - - Full Song List - Fullständig sånglista - - - GeneralTab + + Import a theme. + + - - SongSelect Password: - SongSelect-lösenord: - - + + Export a theme. + + + + + &Edit Theme + + + + + &Delete Theme + + + + + Set As &Global Default + + + + + E&xport Theme + + + + + %s (default) + + + + + You must select a theme to edit. + + + + + You must select a theme to delete. + + + + + Theme %s is use in %s plugin. + + + + + Theme %s is use by the service manager. + + + + + Theme Exported + + + + + Your theme has been successfully exported. + + + + + Theme Export Failed + + + + + Your theme could not be exported due to an error. + + + + + Theme (*.*) + + + + + File is not a valid theme. +The content encoding is not UTF-8. + + + + + A theme with this name already exists. Would you like to overwrite it? + + + + + ThemesTab + + + Use the global theme, overriding any themes associated with either the service or the songs. + Använd det globala temat, ignorerar teman associerade med mötesplaneringen eller sångerna. + + + + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. + Använd temat för varje sång i databasen indviduellt. Om en sång inte har ett associerat tema, använd planeringens schema. Om planeringen inte har ett tema, använd globala temat. + + + + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. + Använd temat för mötesplaneringen, och ignorera sångernas indviduella teman. Om mötesplaneringen inte har ett tema använd då det globala temat. + + + + Themes + Teman + + + + Global Theme + + + + + Theme Level + + + + + S&ong Level + + + + + &Service Level + + + + + &Global Level + + + + + VerseType + + + Verse + Vers + + + + Chorus + Refräng + + + + Bridge + Brygga + + + + Pre-Chorus + Brygga + + + + Intro + Intro + + + + Ending + Ending + + + + Other + Övrigt + + diff --git a/resources/images/openlp-2.qrc b/resources/images/openlp-2.qrc index 118a30eae..c9277c3cf 100644 --- a/resources/images/openlp-2.qrc +++ b/resources/images/openlp-2.qrc @@ -98,6 +98,7 @@ system_servicemanager.png system_thememanager.png system_exit.png + settings_plugin_list.png system_settings.png diff --git a/resources/images/settings_plugin_list.png b/resources/images/settings_plugin_list.png new file mode 100644 index 000000000..a63300712 Binary files /dev/null and b/resources/images/settings_plugin_list.png differ