diff --git a/.bzrignore b/.bzrignore index 68fa826de..b7dffe4fb 100644 --- a/.bzrignore +++ b/.bzrignore @@ -44,3 +44,4 @@ __pycache__ cover *.kdev4 coverage +tags diff --git a/openlp/.version b/openlp/.version index f90b1afc0..6b4950e3d 100644 --- a/openlp/.version +++ b/openlp/.version @@ -1 +1 @@ -2.3.2 +2.4 diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index a16c7c6c0..a4bfa4bc5 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -326,6 +326,9 @@ class MainDisplay(OpenLPMixin, Display, RegistryProperties): else: self.setVisible(False) self.setGeometry(self.screen['size']) + # Workaround for bug #1531319, should not be needed with PyQt 5.6. + if is_win(): + self.shake_web_view() def direct_image(self, path, background): """ @@ -395,8 +398,20 @@ class MainDisplay(OpenLPMixin, Display, RegistryProperties): # Wait for the fade to finish before geting the preview. # Important otherwise preview will have incorrect text if at all! if self.service_item.theme_data and self.service_item.theme_data.display_slide_transition: + # Workaround for bug #1531319, should not be needed with PyQt 5.6. + if is_win(): + fade_shake_timer = QtCore.QTimer(self) + fade_shake_timer.setInterval(25) + fade_shake_timer.timeout.connect(self.shake_web_view) + fade_shake_timer.start() while not self.frame.evaluateJavaScript('show_text_completed()'): self.application.process_events() + # Workaround for bug #1531319, should not be needed with PyQt 5.6. + if is_win(): + # Workaround for bug #1531319, should not be needed with PyQt 5.6. + fade_shake_timer.stop() + elif is_win(): + self.shake_web_view() # Wait for the webview to update before getting the preview. # Important otherwise first preview will miss the background ! while not self.web_loaded: @@ -493,6 +508,9 @@ class MainDisplay(OpenLPMixin, Display, RegistryProperties): if self.isHidden(): self.setVisible(True) self.web_view.setVisible(True) + # Workaround for bug #1531319, should not be needed with PyQt 5.6. + if is_win(): + self.shake_web_view() self.hide_mode = mode def show_display(self): @@ -511,6 +529,9 @@ class MainDisplay(OpenLPMixin, Display, RegistryProperties): # Trigger actions when display is active again. if self.is_live: Registry().execute('live_display_active') + # Workaround for bug #1531319, should not be needed with PyQt 5.6. + if is_win(): + self.shake_web_view() def _hide_mouse(self): """ diff --git a/openlp/core/ui/slidecontroller.py b/openlp/core/ui/slidecontroller.py index bed5d07c4..2579580df 100644 --- a/openlp/core/ui/slidecontroller.py +++ b/openlp/core/ui/slidecontroller.py @@ -1101,9 +1101,6 @@ class SlideController(DisplayController, RegistryProperties): self.display.image(to_display) # reset the store used to display first image self.service_item.bg_image_bytes = None - # Workaround for bug #1531319, should not be needed with PyQt 5.6. - if self.is_live and is_win(): - self.display.shake_web_view() self.selected_row = row self.update_preview() self.preview_widget.change_slide(row) @@ -1128,8 +1125,8 @@ class SlideController(DisplayController, RegistryProperties): self.log_debug('update_preview %s ' % self.screens.current['primary']) if self.service_item and self.service_item.is_capable(ItemCapabilities.ProvidesOwnDisplay): # Grab now, but try again in a couple of seconds if slide change is slow - QtCore.QTimer.singleShot(0.5, self.grab_maindisplay) - QtCore.QTimer.singleShot(2.5, self.grab_maindisplay) + QtCore.QTimer.singleShot(500, self.grab_maindisplay) + QtCore.QTimer.singleShot(2500, self.grab_maindisplay) else: self.slide_image = self.display.preview() self.slide_image.setDevicePixelRatio(self.main_window.devicePixelRatio()) diff --git a/openlp/plugins/presentations/lib/messagelistener.py b/openlp/plugins/presentations/lib/messagelistener.py index d8af1dd6b..cc5a6f05e 100644 --- a/openlp/plugins/presentations/lib/messagelistener.py +++ b/openlp/plugins/presentations/lib/messagelistener.py @@ -63,6 +63,7 @@ class Controller(object): if not self.doc.load_presentation(): # Display error message to user # Inform slidecontroller that the action failed? + self.doc.slidenumber = 0 return self.doc.slidenumber = slide_no self.hide_mode = hide_mode diff --git a/openlp/plugins/songs/lib/importers/easyworship.py b/openlp/plugins/songs/lib/importers/easyworship.py index d39f047c7..5760e419d 100644 --- a/openlp/plugins/songs/lib/importers/easyworship.py +++ b/openlp/plugins/songs/lib/importers/easyworship.py @@ -292,7 +292,7 @@ class EasyWorshipSongImport(SongImport): raw_record = db_file.read(record_size) self.fields = self.record_structure.unpack(raw_record) self.set_defaults() - self.title = self.get_field(fi_title).decode('unicode-escape') + self.title = self.get_field(fi_title).decode(self.encoding) # Get remaining fields. copy = self.get_field(fi_copy) admin = self.get_field(fi_admin) @@ -300,16 +300,16 @@ class EasyWorshipSongImport(SongImport): authors = self.get_field(fi_author) words = self.get_field(fi_words) if copy: - self.copyright = copy.decode('unicode-escape') + self.copyright = copy.decode(self.encoding) if admin: if copy: self.copyright += ', ' self.copyright += translate('SongsPlugin.EasyWorshipSongImport', - 'Administered by %s') % admin.decode('unicode-escape') + 'Administered by %s') % admin.decode(self.encoding) if ccli: - self.ccli_number = ccli.decode('unicode-escape') + self.ccli_number = ccli.decode(self.encoding) if authors: - authors = authors.decode('unicode-escape') + authors = authors.decode(self.encoding) else: authors = '' # Set the SongImport object members. @@ -497,7 +497,7 @@ class EasyWorshipSongImport(SongImport): bytes = self.get_bytes(pos, length) mask = '<' + str(length) + 's' byte_str, = struct.unpack(mask, bytes) - return byte_str.decode('unicode-escape').replace('\0', '').strip() + return byte_str.decode(self.encoding).replace('\0', '').strip() def get_i16(self, pos): """ diff --git a/openlp/plugins/songusage/songusageplugin.py b/openlp/plugins/songusage/songusageplugin.py index 0363d2b62..4cb3153cf 100644 --- a/openlp/plugins/songusage/songusageplugin.py +++ b/openlp/plugins/songusage/songusageplugin.py @@ -118,7 +118,6 @@ class SongUsagePlugin(Plugin): self.main_window.status_bar.insertPermanentWidget(1, self.song_usage_active_button) self.song_usage_active_button.hide() # Signals and slots - self.song_usage_status.changed.connect(self.toggle_song_usage_state) self.song_usage_active_button.toggled.connect(self.toggle_song_usage_state) self.song_usage_menu.menuAction().setVisible(False) diff --git a/resources/i18n/af.ts b/resources/i18n/af.ts index eb2b51a8c..4a44d73c8 100644 --- a/resources/i18n/af.ts +++ b/resources/i18n/af.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -97,14 +96,14 @@ Gaan steeds voort? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Die attent-teks bevat nie '<>' nie. Gaan steeds voort? - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. Daar is geen teks vir die waarskuwing verskaf nie. Tik asseblief in sommige teks voor te kliek Nuwe. @@ -1289,7 +1288,7 @@ Dit is nie moontlik om die Boek Name aan te pas nie. An error occurred while downloading the list of bibles from %s. - + @@ -1430,7 +1429,7 @@ Hierdie Bybel sal weer ingevoer moet word voordat dit gebruik geneem kan word. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. - + @@ -1438,7 +1437,7 @@ Hierdie Bybel sal weer ingevoer moet word voordat dit gebruik geneem kan word. Importing %(bookname)s %(chapter)s... - + @@ -1446,12 +1445,12 @@ Hierdie Bybel sal weer ingevoer moet word voordat dit gebruik geneem kan word. Removing unused tags (this may take a few minutes)... - + Importing %(bookname)s %(chapter)s... - + @@ -1600,7 +1599,7 @@ Volledig Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + @@ -1608,7 +1607,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. - + @@ -1616,7 +1615,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Importing %(bookname)s %(chapter)s... - + @@ -1682,7 +1681,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - + @@ -1700,7 +1699,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Import missing custom slides from service files - + @@ -1763,7 +1762,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I You need to add at least one slide. - + @@ -1779,7 +1778,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the "%d" selected custom slide(s)? - + @@ -1848,32 +1847,32 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Add group - + Parent group: - + Group name: - + You need to type in a group name. - + Could not add the new group. - + This group already exists. - + @@ -1881,27 +1880,27 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Select Image Group - + Add images to group: - + No group - + Existing group - + New group - + @@ -1954,22 +1953,22 @@ Voeg steeds die ander beelde by? -- Top-level group -- - + You must select an image or group to delete. - + Remove group - + Are you sure you want to remove "%s" and everything in it? - + @@ -1985,27 +1984,27 @@ Voeg steeds die ander beelde by? Audio - + Video - + VLC is an external player which supports a number of different formats. - + Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. - + This media player uses your operating system to provide media capabilities. - + @@ -2074,32 +2073,32 @@ Voeg steeds die ander beelde by? Select Media Clip - + Source - + Media path: - + Select drive from list - + Load disc - + Track Details - + @@ -2109,52 +2108,52 @@ Voeg steeds die ander beelde by? Audio track: - + Subtitle track: - + HH:mm:ss.z - + Clip Range - + Start point: - + Set start point - + Jump to start point - + End point: - + Set end point - + Jump to end point - + @@ -2162,67 +2161,67 @@ Voeg steeds die ander beelde by? No path was given - + Given path does not exists - + An error happened during initialization of VLC player - + VLC player failed playing the media - + CD not loaded correctly - + The CD was not loaded correctly, please re-load and try again. - + DVD not loaded correctly - + The DVD was not loaded correctly, please re-load and try again. - + Set name of mediaclip - + Name of mediaclip: - + Enter a valid name or cancel - + Invalid character - + The name of the mediaclip must not contain the character ":" - + @@ -2280,37 +2279,37 @@ Voeg steeds die ander beelde by? VLC player required - + VLC player required for playback of optical devices - + Load CD/DVD - + Load CD/DVD - only supported when VLC is installed and enabled - + The optical disc %s is no longer available. - + Mediaclip already saved - + This mediaclip has already been saved - + @@ -2323,7 +2322,7 @@ Voeg steeds die ander beelde by? Start Live items automatically - + @@ -2331,7 +2330,7 @@ Voeg steeds die ander beelde by? &Projector Manager - + @@ -2356,27 +2355,27 @@ Should OpenLP upgrade now? Backup - + OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? - + Backup of the data folder failed! - + A backup of the data folder has been created at %s - + Open - + @@ -2431,147 +2430,147 @@ OpenLP is geskryf en word onderhou deur vrywilligers. As jy meer gratis Christel Project Lead - + Developers - + Contributors - + Packagers - + Testers - + Translators - + Afrikaans (af) - + Czech (cs) - + Danish (da) - + German (de) - + Greek (el) - + English, United Kingdom (en_GB) - + English, South Africa (en_ZA) - + Spanish (es) - + Estonian (et) - + Finnish (fi) - + French (fr) - + Hungarian (hu) - + Indonesian (id) - + Japanese (ja) - + - Norwegian Bokmål (nb) - + Norwegian Bokmål (nb) + Dutch (nl) - + Polish (pl) - + Portuguese, Brazil (pt_BR) - + Russian (ru) - + Swedish (sv) - + Tamil(Sri-Lanka) (ta_LK) - + Chinese(China) (zh_CN) - + Documentation - + @@ -2582,7 +2581,7 @@ OpenLP is geskryf en word onderhou deur vrywilligers. As jy meer gratis Christel Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ - + @@ -2597,13 +2596,13 @@ OpenLP is geskryf en word onderhou deur vrywilligers. As jy meer gratis Christel on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - + - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s - + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s + @@ -2883,17 +2882,17 @@ Die data gids sal verander word wanneer OpenLP toe gemaak word. Thursday - + Display Workarounds - + Use alternating row colours in lists - + @@ -2904,17 +2903,17 @@ The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? - + Restart Required - + This change will only take effect once OpenLP has been restarted. - + @@ -2939,252 +2938,252 @@ Hierdie ligging sal gebruik word nadat OpenLP toegemaak is. RGB - + Video - + Digital - + Storage - + Network - + RGB 1 - + RGB 2 - + RGB 3 - + RGB 4 - + RGB 5 - + RGB 6 - + RGB 7 - + RGB 8 - + RGB 9 - + Video 1 - + Video 2 - + Video 3 - + Video 4 - + Video 5 - + Video 6 - + Video 7 - + Video 8 - + Video 9 - + Digital 1 - + Digital 2 - + Digital 3 - + Digital 4 - + Digital 5 - + Digital 6 - + Digital 7 - + Digital 8 - + Digital 9 - + Storage 1 - + Storage 2 - + Storage 3 - + Storage 4 - + Storage 5 - + Storage 6 - + Storage 7 - + Storage 8 - + Storage 9 - + Network 1 - + Network 2 - + Network 3 - + Network 4 - + Network 5 - + Network 6 - + Network 7 - + Network 8 - + Network 9 - + @@ -3218,12 +3217,12 @@ Hierdie ligging sal gebruik word nadat OpenLP toegemaak is. Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. - + @@ -3461,79 +3460,79 @@ Om weer die Eerste Keer Gids te gebruik en hierdie voorbeeld data om 'n lat There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. - + Download complete. Click the %s button to return to OpenLP. - + Download complete. Click the %s button to start OpenLP. - + Click the %s button to return to OpenLP. - + Click the %s button to start OpenLP. - + There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. - + This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. - + To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. - + Downloading Resource Index - + Please wait while the resource index is downloaded. - + Please wait while OpenLP downloads the resource index file... - + Downloading and Configuring - + Please wait while resources are downloaded and OpenLP is configured. - + Network Error - + There was a network error attempting to connect to retrieve initial configuration information - + @@ -3543,7 +3542,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Unable to download some files - + @@ -3576,12 +3575,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Default Formatting - + Custom Formatting - + @@ -3599,12 +3598,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Description is missing - + Tag is missing - + @@ -3614,17 +3613,17 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Description %s already defined. - + Start tag %s is not valid HTML - + End tag %(end)s does not match end tag for start tag %(start)s - + @@ -4338,12 +4337,12 @@ Her-gebruik van hierdie gids mag veranderinge aan die huidige OpenLP konfigurasi Library - + Jump to the search box of the current active plugin. - + @@ -4352,89 +4351,89 @@ Her-gebruik van hierdie gids mag veranderinge aan die huidige OpenLP konfigurasi Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. - + Projector Manager - + Toggle Projector Manager - + Toggle the visibility of the Projector Manager - + Export setting error - + The key "%s" does not have a default value so it will be skipped in this export. - + An error occurred while exporting the settings: %s - + &Recent Services - + &New Service - + &Open Service - + &Save Service - + Save Service &As... - + &Manage Plugins - + Exit OpenLP - + Are you sure you want to exit OpenLP? - + &Exit OpenLP - + @@ -4555,22 +4554,22 @@ Suffix not supported Unknown status - + No message - + Error while sending data to projector - + Undefined command: - + @@ -4578,7 +4577,7 @@ Suffix not supported Players - + @@ -4588,12 +4587,12 @@ Suffix not supported Player Search Order - + Visible background for videos with aspect ratio different to screen. - + @@ -4604,7 +4603,7 @@ Suffix not supported NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" - + @@ -4647,7 +4646,7 @@ Suffix not supported Manage Plugins - + @@ -4746,257 +4745,257 @@ Suffix not supported OK - + General projector error - + Not connected error - + Lamp error - + Fan error - + High temperature detected - + Cover open detected - + Check filter - + Authentication Error - + Undefined Command - + Invalid Parameter - + Projector Busy - + Projector/Display Error - + Invalid packet received - + Warning condition detected - + Error condition detected - + PJLink class not supported - + Invalid prefix character - + The connection was refused by the peer (or timed out) - + The remote host closed the connection - + The host address was not found - + The socket operation failed because the application lacked the required privileges - + The local system ran out of resources (e.g., too many sockets) - + The socket operation timed out - + The datagram was larger than the operating system's limit - + An error occurred with the network (Possibly someone pulled the plug?) - + The address specified with socket.bind() is already in use and was set to be exclusive - + The address specified to socket.bind() does not belong to the host - + The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) - + The socket is using a proxy, and the proxy requires authentication - + The SSL/TLS handshake failed - + The last operation attempted has not finished yet (still in progress in the background) - + Could not contact the proxy server because the connection to that server was denied - + The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) - + The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. - + The proxy address set with setProxy() was not found - + An unidentified error occurred - + Not connected - + Connecting - + Connected - + Getting status - + Off - + Initialize in progress - + Power in standby - + Warmup in progress - + Power is on - + Cooldown in progress - + Projector Information available - + Sending data - + Received data - + The connection negotiation with the proxy server failed because the response from the proxy server could not be understood - + @@ -5004,17 +5003,17 @@ Suffix not supported Name Not Set - + You must enter a name for this entry.<br />Please enter a new name for this entry. - + Duplicate Name - + @@ -5022,37 +5021,37 @@ Suffix not supported Add New Projector - + Edit Projector - + IP Address - + Port Number - + PIN - + Name - + Location - + @@ -5067,7 +5066,7 @@ Suffix not supported There was an error saving projector information. See the log for the error - + @@ -5075,162 +5074,162 @@ Suffix not supported Add Projector - + Add a new projector - + Edit Projector - + Edit selected projector - + Delete Projector - + Delete selected projector - + Select Input Source - + Choose input source on selected projector - + View Projector - + View selected projector information - + Connect to selected projector - + Connect to selected projectors - + Disconnect from selected projectors - + Disconnect from selected projector - + Power on selected projector - + Standby selected projector - + Put selected projector in standby - + Blank selected projector screen - + Show selected projector screen - + &View Projector Information - + &Edit Projector - + &Connect Projector - + D&isconnect Projector - + Power &On Projector - + Power O&ff Projector - + Select &Input - + Edit Input Source - + &Blank Projector Screen - + &Show Projector Screen - + &Delete Projector - + Name - + IP - + @@ -5245,102 +5244,102 @@ Suffix not supported Projector information not available at this time. - + Projector Name - + Manufacturer - + Model - + Other info - + Power status - + Shutter is - + Closed - + Current source input is - + Lamp - + On - + Off - + Hours - + No current errors or warnings - + Current errors/warnings - + Projector Information - + No message - + Not Implemented Yet - + Delete projector (%s) %s? - + Are you sure you want to delete this projector? - + @@ -5348,27 +5347,27 @@ Suffix not supported Fan - + Lamp - + Temperature - + Cover - + Filter - + @@ -5381,37 +5380,37 @@ Suffix not supported Projector - + Communication Options - + Connect to projectors on startup - + Socket timeout (seconds) - + Poll time (seconds) - + Tabbed dialog box - + Single dialog box - + @@ -5419,17 +5418,17 @@ Suffix not supported Duplicate IP Address - + Invalid IP Address - + Invalid Port Number - + @@ -5460,7 +5459,7 @@ Suffix not supported [slide %d] - + @@ -5736,79 +5735,79 @@ Suffix not supported &Rename... - + Create New &Custom Slide - + &Auto play slides - + Auto play slides &Loop - + Auto play slides &Once - + &Delay between slides - + OpenLP Service Files (*.osz *.oszl) - + OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) - + OpenLP Service Files (*.osz);; - + File is not a valid service. The content encoding is not UTF-8. - + The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. - + This file is either corrupt or it is not an OpenLP 2 service file. - + &Auto Start - inactive - + &Auto Start - active - + Input delay - + @@ -5818,7 +5817,7 @@ Suffix not supported Rename item title - + @@ -5828,14 +5827,14 @@ Suffix not supported An error occurred while writing the service file: %s - + The following file(s) in the service are missing: %s These files will be removed if you continue to save. - + @@ -6100,42 +6099,42 @@ These files will be removed if you continue to save. Select Projector Source - + Edit Projector Source Text - + Ignoring current changes and return to OpenLP - + Delete all user-defined text and revert to PJLink default text - + Discard changes and reset to previous user-defined text - + Save changes and return to OpenLP - + Delete entries for this projector - + Are you sure you want to delete ALL user-defined source input text for this projector? - + @@ -6421,29 +6420,29 @@ These files will be removed if you continue to save. The theme export failed because this error occurred: %s - + OpenLP Themes (*.otz) - + %s time(s) by %s - + Unable to delete theme - + Theme is currently used %s - + @@ -6736,17 +6735,17 @@ These files will be removed if you continue to save. Solid color - + color: - + Allows you to change and move the Main and Footer areas. - + @@ -6804,12 +6803,12 @@ These files will be removed if you continue to save. Universal Settings - + &Wrap footer text - + @@ -6919,7 +6918,7 @@ These files will be removed if you continue to save. - © + © Copyright symbol. © @@ -6980,17 +6979,17 @@ These files will be removed if you continue to save. Welcome to the Duplicate Song Removal Wizard - + Written by - + Author Unknown - + @@ -7005,7 +7004,7 @@ These files will be removed if you continue to save. Add group - + @@ -7205,25 +7204,25 @@ Probeer asseblief om dit individueel te kies. Manufacturer Singular - + Manufacturers Plural - + Model Singular - + Models Plural - + @@ -7320,13 +7319,13 @@ Probeer asseblief om dit individueel te kies. Projector Singular - + Projectors Plural - + @@ -7475,12 +7474,12 @@ Probeer asseblief om dit individueel te kies. CCLI song number: - + Preview Toolbar - + @@ -7490,19 +7489,19 @@ Probeer asseblief om dit individueel te kies. Replace live background is not available when the WebKit player is disabled. - + Songbook Singular - + Songbooks Plural - + @@ -7511,25 +7510,25 @@ Probeer asseblief om dit individueel te kies. %s and %s Locale list separator: 2 items - + %s, and %s Locale list separator: end - + %s, %s Locale list separator: middle - + %s, %s Locale list separator: start - + @@ -7537,7 +7536,7 @@ Probeer asseblief om dit individueel te kies. Source select dialog interface - + @@ -7649,7 +7648,7 @@ Probeer asseblief om dit individueel te kies. An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. - + @@ -7672,37 +7671,37 @@ Probeer asseblief om dit individueel te kies. PDF options - + Use given full path for mudraw or ghostscript binary: - + Select mudraw or ghostscript binary. - + The program is not ghostscript or mudraw which is required. - + PowerPoint options - + Clicking on a selected slide in the slidecontroller advances to next effect. - + Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). - + @@ -7733,12 +7732,12 @@ Probeer asseblief om dit individueel te kies. Server Config Change - + Server configuration changes will require a restart to take effect. - + @@ -7861,12 +7860,12 @@ Probeer asseblief om dit individueel te kies. Stage View - + Live View - + @@ -7909,27 +7908,27 @@ Probeer asseblief om dit individueel te kies. Live view URL: - + HTTPS Server - + Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. - + User Authentication - + User id: - + @@ -7939,12 +7938,12 @@ Probeer asseblief om dit individueel te kies. Show thumbnails of non-text slides in remote and stage view. - + Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. - + @@ -8059,12 +8058,12 @@ Probeer asseblief om dit individueel te kies. Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + All requested data has been deleted successfully. - + @@ -8122,17 +8121,17 @@ was suksesvol geskep. You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + Report Creation Failed - + An error occurred while creating the report: %s - + @@ -8320,22 +8319,22 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. CCLI SongSelect - + Import songs from CCLI's SongSelect service. - + Find &Duplicate Songs - + Find and remove duplicate songs in the song database. - + @@ -8344,25 +8343,25 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. Words Author who wrote the lyrics of a song - + Music Author who wrote the music of a song - + Words and Music Author who wrote both lyrics and music of a song - + Translation Author who translated the song - + @@ -8416,7 +8415,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. Invalid DreamBeam song file. Missing DreamSong tag. - + @@ -8429,43 +8428,43 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. "%s" could not be imported. %s - + Unexpected data formatting. - + No song text found. - + [above are Song Tags with notes imported from EasyWorship] - + This file does not exist. - + Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. - + This file is not a valid EasyWorship database. - + Could not retrieve encoding. - + @@ -8652,73 +8651,73 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. - + Invalid Verse Order - + &Edit Author Type - + Edit Author Type - + Choose type for this author - + There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. - + &Manage Authors, Topics, Songbooks - + Add &to Song - + Re&move - + Authors, Topics && Songbooks - + Add Songbook - + This Songbook does not exist, do you want to add it? - + This Songbook is already in the list. - + You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + @@ -8824,7 +8823,7 @@ Please enter the verses separated by spaces. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. - + @@ -9003,82 +9002,82 @@ Please enter the verses separated by spaces. EasyWorship Service File - + WorshipCenter Pro Song Files - + The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + PowerPraise Song Files - + PresentationManager Song Files - + ProPresenter 4 Song Files - + Worship Assistant Files - + Worship Assistant (CSV) - + In Worship Assistant, export your Database to a CSV file. - + OpenLyrics or OpenLP 2 Exported Song - + OpenLP 2 Databases - + LyriX Files - + LyriX (Exported TXT-files) - + VideoPsalm Files - + VideoPsalm - + The VideoPsalm songbooks are normally located in %s - + @@ -9086,7 +9085,7 @@ Please enter the verses separated by spaces. Error: %s - + @@ -9158,12 +9157,12 @@ Please enter the verses separated by spaces. Are you sure you want to delete the "%d" selected song(s)? - + Search Songbooks... - + @@ -9179,7 +9178,7 @@ Please enter the verses separated by spaces. Not a valid OpenLP 2 song database. - + @@ -9195,7 +9194,7 @@ Please enter the verses separated by spaces. Invalid OpenSong song file. Missing song tag. - + @@ -9251,7 +9250,7 @@ Please enter the verses separated by spaces. Songbook Maintenance - + @@ -9269,7 +9268,7 @@ Please enter the verses separated by spaces. Your song export failed because this error occurred: %s - + @@ -9413,12 +9412,12 @@ Please enter the verses separated by spaces. CCLI SongSelect Importer - + <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. - + @@ -9433,17 +9432,17 @@ Please enter the verses separated by spaces. Save username and password - + Login - + Search Text: - + @@ -9453,12 +9452,12 @@ Please enter the verses separated by spaces. Found %s song(s) - + Logout - + @@ -9473,7 +9472,7 @@ Please enter the verses separated by spaces. Author(s): - + @@ -9483,12 +9482,12 @@ Please enter the verses separated by spaces. CCLI Number: - + Lyrics: - + @@ -9503,62 +9502,62 @@ Please enter the verses separated by spaces. More than 1000 results - + Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. - + Logging out... - + Save Username and Password - + WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. - + Error Logging In - + There was a problem logging in, perhaps your username or password is incorrect? - + Song Imported - + Incomplete song - + This song is missing some information, like the lyrics, and cannot be imported. - + Your song has been imported, would you like to import more songs? - + Stop - + @@ -9586,12 +9585,12 @@ Please enter the verses separated by spaces. Display songbook in footer - + Display "%s" symbol before copyright info - + @@ -9655,7 +9654,7 @@ Please enter the verses separated by spaces. Error: %s - + @@ -9663,12 +9662,12 @@ Please enter the verses separated by spaces. Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words - + Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock - + @@ -9691,7 +9690,7 @@ Please enter the verses separated by spaces. File not valid WorshipAssistant CSV format. - + @@ -9704,7 +9703,7 @@ Please enter the verses separated by spaces. Unable to connect the WorshipCenter Pro database. - + @@ -9740,32 +9739,32 @@ Please enter the verses separated by spaces. Wizard - + This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. - + Searching for duplicate songs. - + Please wait while your songs database is analyzed. - + Here you can decide which songs to remove and which ones to keep. - + Review duplicate songs (%s/%s) - + @@ -9775,7 +9774,7 @@ Please enter the verses separated by spaces. No duplicate songs have been found in the database. - + - + \ No newline at end of file diff --git a/resources/i18n/bg.ts b/resources/i18n/bg.ts index 7fde01787..9c7983f0a 100644 --- a/resources/i18n/bg.ts +++ b/resources/i18n/bg.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -97,13 +96,13 @@ Do you want to continue anyway? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Сигналът не съдържа '<>'.⏎ Искате ли да продължите все пак? - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. Не сте дали никакъв текст на вашия сигнал. Моля напишете нещо преди да натиснете бутона Нов. @@ -1415,7 +1414,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. - + @@ -1431,7 +1430,7 @@ You will need to re-import this Bible to use it again. Removing unused tags (this may take a few minutes)... - + @@ -1581,7 +1580,7 @@ Complete Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + @@ -1589,7 +1588,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. - + @@ -1761,7 +1760,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the "%d" selected custom slide(s)? - + @@ -1986,7 +1985,7 @@ Do you want to add the other images anyway? This media player uses your operating system to provide media capabilities. - + @@ -2080,7 +2079,7 @@ Do you want to add the other images anyway? Track Details - + @@ -2090,17 +2089,17 @@ Do you want to add the other images anyway? Audio track: - + Subtitle track: - + HH:mm:ss.z - + @@ -2120,22 +2119,22 @@ Do you want to add the other images anyway? Jump to start point - + End point: - + Set end point - + Jump to end point - + @@ -2143,67 +2142,67 @@ Do you want to add the other images anyway? No path was given - + Given path does not exists - + An error happened during initialization of VLC player - + VLC player failed playing the media - + CD not loaded correctly - + The CD was not loaded correctly, please re-load and try again. - + DVD not loaded correctly - + The DVD was not loaded correctly, please re-load and try again. - + Set name of mediaclip - + Name of mediaclip: - + Enter a valid name or cancel - + Invalid character - + The name of the mediaclip must not contain the character ":" - + @@ -2261,37 +2260,37 @@ Do you want to add the other images anyway? VLC player required - + VLC player required for playback of optical devices - + Load CD/DVD - + Load CD/DVD - only supported when VLC is installed and enabled - + The optical disc %s is no longer available. - + Mediaclip already saved - + This mediaclip has already been saved - + @@ -2312,7 +2311,7 @@ Do you want to add the other images anyway? &Projector Manager - + @@ -2339,27 +2338,27 @@ Should OpenLP upgrade now? Backup - + OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? - + Backup of the data folder failed! - + A backup of the data folder has been created at %s - + Open - + @@ -2412,147 +2411,147 @@ OpenLP се програмира и разработва от доброволц Project Lead - + Developers - + Contributors - + Packagers - + Testers - + Translators - + Afrikaans (af) - + Czech (cs) - + Danish (da) - + German (de) - + Greek (el) - + English, United Kingdom (en_GB) - + English, South Africa (en_ZA) - + Spanish (es) - + Estonian (et) - + Finnish (fi) - + French (fr) - + Hungarian (hu) - + Indonesian (id) - + Japanese (ja) - + - Norwegian Bokmål (nb) - + Norwegian Bokmål (nb) + Dutch (nl) - + Polish (pl) - + Portuguese, Brazil (pt_BR) - + Russian (ru) - + Swedish (sv) - + Tamil(Sri-Lanka) (ta_LK) - + Chinese(China) (zh_CN) - + Documentation - + @@ -2563,7 +2562,7 @@ OpenLP се програмира и разработва от доброволц Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ - + @@ -2578,13 +2577,13 @@ OpenLP се програмира и разработва от доброволц on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - + - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s - + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s + @@ -2928,7 +2927,7 @@ This location will be used after OpenLP is closed. RGB - + @@ -2938,242 +2937,242 @@ This location will be used after OpenLP is closed. Digital - + Storage - + Network - + RGB 1 - + RGB 2 - + RGB 3 - + RGB 4 - + RGB 5 - + RGB 6 - + RGB 7 - + RGB 8 - + RGB 9 - + Video 1 - + Video 2 - + Video 3 - + Video 4 - + Video 5 - + Video 6 - + Video 7 - + Video 8 - + Video 9 - + Digital 1 - + Digital 2 - + Digital 3 - + Digital 4 - + Digital 5 - + Digital 6 - + Digital 7 - + Digital 8 - + Digital 9 - + Storage 1 - + Storage 2 - + Storage 3 - + Storage 4 - + Storage 5 - + Storage 6 - + Storage 7 - + Storage 8 - + Storage 9 - + Network 1 - + Network 2 - + Network 3 - + Network 4 - + Network 5 - + Network 6 - + Network 7 - + Network 8 - + Network 9 - + @@ -3207,12 +3206,12 @@ This location will be used after OpenLP is closed. Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. - + @@ -3447,79 +3446,79 @@ To re-run the First Time Wizard and import this sample data at a later time, che There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. - + Download complete. Click the %s button to return to OpenLP. - + Download complete. Click the %s button to start OpenLP. - + Click the %s button to return to OpenLP. - + Click the %s button to start OpenLP. - + There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. - + This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. - + To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. - + Downloading Resource Index - + Please wait while the resource index is downloaded. - + Please wait while OpenLP downloads the resource index file... - + Downloading and Configuring - + Please wait while resources are downloaded and OpenLP is configured. - + Network Error - + There was a network error attempting to connect to retrieve initial configuration information - + @@ -3529,7 +3528,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Unable to download some files - + @@ -3595,22 +3594,22 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Tag %s already defined. - Tag %s already defined. Отметката%ите е%са вече дефинирана%и. + Description %s already defined. - + Start tag %s is not valid HTML - + End tag %(end)s does not match end tag for start tag %(start)s - + @@ -4351,77 +4350,77 @@ Processing has terminated and no changes have been made. Projector Manager - + Toggle Projector Manager - + Toggle the visibility of the Projector Manager - + Export setting error - + The key "%s" does not have a default value so it will be skipped in this export. - + An error occurred while exporting the settings: %s - + &Recent Services - + &New Service - + &Open Service - + &Save Service - + Save Service &As... - + &Manage Plugins - + Exit OpenLP - + Are you sure you want to exit OpenLP? - + &Exit OpenLP - + @@ -4538,22 +4537,22 @@ Suffix not supported Unknown status - + No message - + Error while sending data to projector - + Undefined command: - + @@ -4587,7 +4586,7 @@ Suffix not supported NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" - + @@ -4630,7 +4629,7 @@ Suffix not supported Manage Plugins - + @@ -4729,257 +4728,257 @@ Suffix not supported OK - + General projector error - + Not connected error - + Lamp error - + Fan error - + High temperature detected - + Cover open detected - + Check filter - + Authentication Error - + Undefined Command - + Invalid Parameter - + Projector Busy - + Projector/Display Error - + Invalid packet received - + Warning condition detected - + Error condition detected - + PJLink class not supported - + Invalid prefix character - + The connection was refused by the peer (or timed out) - + The remote host closed the connection - + The host address was not found - + The socket operation failed because the application lacked the required privileges - + The local system ran out of resources (e.g., too many sockets) - + The socket operation timed out - + The datagram was larger than the operating system's limit - + An error occurred with the network (Possibly someone pulled the plug?) - + The address specified with socket.bind() is already in use and was set to be exclusive - + The address specified to socket.bind() does not belong to the host - + The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) - + The socket is using a proxy, and the proxy requires authentication - + The SSL/TLS handshake failed - + The last operation attempted has not finished yet (still in progress in the background) - + Could not contact the proxy server because the connection to that server was denied - + The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) - + The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. - + The proxy address set with setProxy() was not found - + An unidentified error occurred - + Not connected - + Connecting - + Connected - + Getting status - + Off - + Initialize in progress - + Power in standby - + Warmup in progress - + Power is on - + Cooldown in progress - + Projector Information available - + Sending data - + Received data - + The connection negotiation with the proxy server failed because the response from the proxy server could not be understood - + @@ -4987,17 +4986,17 @@ Suffix not supported Name Not Set - + You must enter a name for this entry.<br />Please enter a new name for this entry. - + Duplicate Name - + @@ -5005,37 +5004,37 @@ Suffix not supported Add New Projector - + Edit Projector - + IP Address - + Port Number - + PIN - + Name - + Location - + @@ -5050,7 +5049,7 @@ Suffix not supported There was an error saving projector information. See the log for the error - + @@ -5058,162 +5057,162 @@ Suffix not supported Add Projector - + Add a new projector - + Edit Projector - + Edit selected projector - + Delete Projector - + Delete selected projector - + Select Input Source - + Choose input source on selected projector - + View Projector - + View selected projector information - + Connect to selected projector - + Connect to selected projectors - + Disconnect from selected projectors - + Disconnect from selected projector - + Power on selected projector - + Standby selected projector - + Put selected projector in standby - + Blank selected projector screen - + Show selected projector screen - + &View Projector Information - + &Edit Projector - + &Connect Projector - + D&isconnect Projector - + Power &On Projector - + Power O&ff Projector - + Select &Input - + Edit Input Source - + &Blank Projector Screen - + &Show Projector Screen - + &Delete Projector - + Name - + IP - + @@ -5228,102 +5227,102 @@ Suffix not supported Projector information not available at this time. - + Projector Name - + Manufacturer - + Model - + Other info - + Power status - + Shutter is - + Closed - + Current source input is - + Lamp - + On - + Off - + Hours - + No current errors or warnings - + Current errors/warnings - + Projector Information - + No message - + Not Implemented Yet - + Delete projector (%s) %s? - + Are you sure you want to delete this projector? - + @@ -5331,27 +5330,27 @@ Suffix not supported Fan - + Lamp - + Temperature - + Cover - + Filter - + @@ -5364,37 +5363,37 @@ Suffix not supported Projector - + Communication Options - + Connect to projectors on startup - + Socket timeout (seconds) - + Poll time (seconds) - + Tabbed dialog box - + Single dialog box - + @@ -5402,17 +5401,17 @@ Suffix not supported Duplicate IP Address - + Invalid IP Address - + Invalid Port Number - + @@ -5443,7 +5442,7 @@ Suffix not supported [slide %d] - + @@ -5813,14 +5812,14 @@ Suffix not supported An error occurred while writing the service file: %s - + The following file(s) in the service are missing: %s These files will be removed if you continue to save. - + @@ -6085,42 +6084,42 @@ These files will be removed if you continue to save. Select Projector Source - + Edit Projector Source Text - + Ignoring current changes and return to OpenLP - + Delete all user-defined text and revert to PJLink default text - + Discard changes and reset to previous user-defined text - + Save changes and return to OpenLP - + Delete entries for this projector - + Are you sure you want to delete ALL user-defined source input text for this projector? - + @@ -6406,29 +6405,29 @@ These files will be removed if you continue to save. The theme export failed because this error occurred: %s - + OpenLP Themes (*.otz) - + %s time(s) by %s - + Unable to delete theme - + Theme is currently used %s - + @@ -6789,12 +6788,12 @@ These files will be removed if you continue to save. Universal Settings - + &Wrap footer text - + @@ -6904,7 +6903,7 @@ These files will be removed if you continue to save. - © + © Copyright symbol. © @@ -7190,25 +7189,25 @@ Please try selecting it individually. Manufacturer Singular - + Manufacturers Plural - + Model Singular - + Models Plural - + @@ -7305,13 +7304,13 @@ Please try selecting it individually. Projector Singular - + Projectors Plural - + @@ -7460,12 +7459,12 @@ Please try selecting it individually. CCLI song number: - + Preview Toolbar - + @@ -7475,19 +7474,19 @@ Please try selecting it individually. Replace live background is not available when the WebKit player is disabled. - + Songbook Singular - + Songbooks Plural - + @@ -7522,7 +7521,7 @@ Please try selecting it individually. Source select dialog interface - + @@ -7634,7 +7633,7 @@ Please try selecting it individually. An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. - + @@ -7677,17 +7676,17 @@ Please try selecting it individually. PowerPoint options - + Clicking on a selected slide in the slidecontroller advances to next effect. - + Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). - + @@ -7846,12 +7845,12 @@ Please try selecting it individually. Stage View - + Live View - + @@ -7924,12 +7923,12 @@ Please try selecting it individually. Show thumbnails of non-text slides in remote and stage view. - + Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. - + @@ -8112,12 +8111,12 @@ Please select an existing path on your computer. Report Creation Failed - + An error occurred while creating the report: %s - + @@ -8432,22 +8431,22 @@ The encoding is responsible for the correct character representation. This file does not exist. - + Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. - + This file is not a valid EasyWorship database. - + Could not retrieve encoding. - + @@ -8645,63 +8644,63 @@ Please enter the verses separated by spaces. &Edit Author Type - + Edit Author Type - + Choose type for this author - + There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. - + &Manage Authors, Topics, Songbooks - + Add &to Song - + Re&move - + Authors, Topics && Songbooks - + Add Songbook - + This Songbook does not exist, do you want to add it? - + This Songbook is already in the list. - + You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + @@ -9001,67 +9000,67 @@ Please enter the verses separated by spaces. PowerPraise Song Files - + PresentationManager Song Files - + ProPresenter 4 Song Files - + Worship Assistant Files - + Worship Assistant (CSV) - + In Worship Assistant, export your Database to a CSV file. - + OpenLyrics or OpenLP 2 Exported Song - + OpenLP 2 Databases - + LyriX Files - + LyriX (Exported TXT-files) - + VideoPsalm Files - + VideoPsalm - + The VideoPsalm songbooks are normally located in %s - + @@ -9069,7 +9068,7 @@ Please enter the verses separated by spaces. Error: %s - + @@ -9141,12 +9140,12 @@ Please enter the verses separated by spaces. Are you sure you want to delete the "%d" selected song(s)? - + Search Songbooks... - + @@ -9162,7 +9161,7 @@ Please enter the verses separated by spaces. Not a valid OpenLP 2 song database. - + @@ -9234,7 +9233,7 @@ Please enter the verses separated by spaces. Songbook Maintenance - + @@ -9252,7 +9251,7 @@ Please enter the verses separated by spaces. Your song export failed because this error occurred: %s - + @@ -9396,12 +9395,12 @@ Please enter the verses separated by spaces. CCLI SongSelect Importer - + <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. - + @@ -9416,17 +9415,17 @@ Please enter the verses separated by spaces. Save username and password - + Login - + Search Text: - + @@ -9436,12 +9435,12 @@ Please enter the verses separated by spaces. Found %s song(s) - + Logout - + @@ -9456,7 +9455,7 @@ Please enter the verses separated by spaces. Author(s): - + @@ -9466,17 +9465,17 @@ Please enter the verses separated by spaces. CCLI Number: - + Lyrics: - + Back - + @@ -9486,62 +9485,62 @@ Please enter the verses separated by spaces. More than 1000 results - + Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. - + Logging out... - + Save Username and Password - + WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. - + Error Logging In - + There was a problem logging in, perhaps your username or password is incorrect? - + Song Imported - + Incomplete song - + This song is missing some information, like the lyrics, and cannot be imported. - + Your song has been imported, would you like to import more songs? - + Stop - + @@ -9574,7 +9573,7 @@ Please enter the verses separated by spaces. Display "%s" symbol before copyright info - + @@ -9638,7 +9637,7 @@ Please enter the verses separated by spaces. Error: %s - + @@ -9646,12 +9645,12 @@ Please enter the verses separated by spaces. Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words - + Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock - + @@ -9674,7 +9673,7 @@ Please enter the verses separated by spaces. File not valid WorshipAssistant CSV format. - + @@ -9761,4 +9760,4 @@ Please enter the verses separated by spaces. Не бяха намерени дублирани песни в базата данни. - + \ No newline at end of file diff --git a/resources/i18n/cs.ts b/resources/i18n/cs.ts index 07eae0034..e3c5f9ea3 100644 --- a/resources/i18n/cs.ts +++ b/resources/i18n/cs.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -97,14 +96,14 @@ Chcete přesto pokračovat? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Text upozornění neobsahuje '<>'. Chcete přesto pokračovat? - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. Nebyl zadán žádný text upozornění. Před klepnutím na Nový prosím zadejte nějaký text. @@ -2531,7 +2530,7 @@ OpenLP vytváří a udržují dobrovolníci. Pokud má existovat více volně do - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) Norština Bokmål (nb) @@ -2618,8 +2617,8 @@ On nás osvobodil. - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s Autorská práva © 2004-2016 %s Částečná autorská práva © 2004-2016 %s @@ -6470,7 +6469,7 @@ Tyto souby se vymažou, pokud službu uložíte. %s time(s) by %s - + @@ -6960,7 +6959,7 @@ Tyto souby se vymažou, pokud službu uložíte. - © + © Copyright symbol. © @@ -7531,19 +7530,19 @@ Prosím zkuste ho vybrat jednotlivě. Replace live background is not available when the WebKit player is disabled. - + Nahradit živé pozadí (live background) není dostupné když je přehrávač WebKit zakázaný. Songbook Singular - + Zpěvník Songbooks Plural - + Zpěvníky @@ -8728,42 +8727,42 @@ Prosím zadejte sloky oddělené mezerou. &Manage Authors, Topics, Songbooks - + &Správa autorů, témat, zpěvníků Add &to Song - + &Přidat k písni Re&move - + &Odstranit Authors, Topics && Songbooks - + Autoři, témata a zpěvníky Add Songbook - + Přidat zpěvník This Songbook does not exist, do you want to add it? - + Tento zpěvník neexistuje. Chcete ho přidat? This Songbook is already in the list. - + Tento zpěvník je už v seznamu. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + Není vybrán platný zpěvník. Buďto vyberte zpěvník ze seznamu nebo zadejte nový zpěvník a pro přidání nového zpěvníku klepněte na tlačítko "Přidat k písni". @@ -9208,7 +9207,7 @@ Prosím zadejte sloky oddělené mezerou. Search Songbooks... - + Hledat zpěvníky... @@ -9296,7 +9295,7 @@ Prosím zadejte sloky oddělené mezerou. Songbook Maintenance - + Údržba zpěvníku @@ -9603,7 +9602,7 @@ Prosím zadejte sloky oddělené mezerou. Stop - + Zastavit @@ -9823,4 +9822,4 @@ Prosím zadejte sloky oddělené mezerou. V databázi nebyly nalezeny žádné duplicitní písně. - + \ No newline at end of file diff --git a/resources/i18n/da.ts b/resources/i18n/da.ts index 2cbf66d73..52211f44c 100644 --- a/resources/i18n/da.ts +++ b/resources/i18n/da.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -97,14 +96,14 @@ Vil du fortsætte alligevel? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Meddelelsesteksten indeholder ikke '<>'. Vil du fortsætte alligevel? - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. Du har ikke angivet nogen tekst i din meddelelse. Skriv noget tekst og klik så på Ny. @@ -2533,7 +2532,7 @@ OpenLP er skrevet og vedligeholdt af frivillige. Hvis du ønsker at se flere gra - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) Norsk Bokmål (nb) @@ -2620,8 +2619,8 @@ Han har gjort os fri. - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s Copyright © 2004-2016 %s Delvis copyright © 2004-2016 %s @@ -6473,7 +6472,7 @@ Disse filer vil blive fjernet hvis du fortsætter med at gemme. %s time(s) by %s - + @@ -6963,7 +6962,7 @@ Disse filer vil blive fjernet hvis du fortsætter med at gemme. - © + © Copyright symbol. © @@ -7534,19 +7533,19 @@ Prøv at vælg den individuelt. Replace live background is not available when the WebKit player is disabled. - + Songbook Singular - + Songbooks Plural - + @@ -8731,42 +8730,42 @@ Indtast venligst versene adskildt af mellemrum. &Manage Authors, Topics, Songbooks - + Add &to Song - + Re&move - + Authors, Topics && Songbooks - + Add Songbook - + This Songbook does not exist, do you want to add it? - + This Songbook is already in the list. - + You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + @@ -9211,7 +9210,7 @@ Indtast venligst versene adskildt af mellemrum. Search Songbooks... - + @@ -9299,7 +9298,7 @@ Indtast venligst versene adskildt af mellemrum. Songbook Maintenance - + @@ -9606,7 +9605,7 @@ Indtast venligst versene adskildt af mellemrum. Stop - + @@ -9826,4 +9825,4 @@ Indtast venligst versene adskildt af mellemrum. Ingen sangdubletter blev fundet i databasen. - + \ No newline at end of file diff --git a/resources/i18n/de.ts b/resources/i18n/de.ts index c99616bbd..8fd4ccfdf 100644 --- a/resources/i18n/de.ts +++ b/resources/i18n/de.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -97,14 +96,14 @@ Möchten Sie dennoch fortfahren? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Der Hinweistext enthält nicht '<>'. Möchten Sie dennoch fortfahren? - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. Sie haben keinen Text für Ihren Hinweistext eingegeben. Bitte geben Sie etwas ein. @@ -1779,7 +1778,7 @@ Bitte beachten Sie, dass Bibeltexte von Onlinebibeln während der Benutzung gela Are you sure you want to delete the "%d" selected custom slide(s)? - + Sollen die %d ausgewählten Sonderfolien wirklich gelöscht werden? @@ -2463,17 +2462,17 @@ OpenLP wird von Freiwilligen Helfern entwickelt und unterstützt. Wenn Sie sich Afrikaans (af) - + Afrikaans (af) Czech (cs) - + Tschechisch (cs) Danish (da) - + Dänisch (da) @@ -2483,92 +2482,92 @@ OpenLP wird von Freiwilligen Helfern entwickelt und unterstützt. Wenn Sie sich Greek (el) - + Griechisch (el) English, United Kingdom (en_GB) - + Englisch, Vereinigtes Königreich (en_GB) English, South Africa (en_ZA) - + Englisch, Südafrika (en_ZA) Spanish (es) - + Spanisch (es) Estonian (et) - + Estonisch (et) Finnish (fi) - + Finnisch (fi) French (fr) - + Französisch (fr) Hungarian (hu) - + Ungarisch (hu) Indonesian (id) - + Indonesisch (id) Japanese (ja) - + Japanisch (ja) - Norwegian Bokmål (nb) - + Norwegian Bokmål (nb) + Norwegisch (nb) Dutch (nl) - + Holländisch (nl) Polish (pl) - + Polnisch (pl) Portuguese, Brazil (pt_BR) - + Brasilianisches Portugiesisch (pt_BR) Russian (ru) - + Russisch (ru) Swedish (sv) - + Schwedisch (sv) Tamil(Sri-Lanka) (ta_LK) - + Tamil (Sri Lanka) (ta_LK) Chinese(China) (zh_CN) - + Chinesisch (China) (zh_CN) @@ -2605,13 +2604,18 @@ OpenLP wird von Freiwilligen Helfern entwickelt und unterstützt. Wenn Sie sich on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - + Danksagung +„Denn so sehr hat Gott die Welt geliebt, daß er seinen eingeborenen Sohn gab, damit jeder, der an ihn glaubt, nicht verlorengeht, sondern ewiges Leben hat.“ (Johannes 3,16) + +Zu guter Letzt geht der Dank an unseren Vater im Himmel, der seinen Sohn gesandt hat, um am Kreuz zu sterben, damit wir frei sein können. +Wir veröffentlichen diese Software kostenlos, weil er uns befreit hat, ohne dass wir etwas dafür getan haben. - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s - + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s + Copyright © 2004-2016 %s +Anteiliges Copyright © 2004-2016 %s @@ -6449,7 +6453,7 @@ Diese Dateien werden entfernt, wenn Sie mit dem Speichern fortfahren. %s time(s) by %s - + %s Mal von %s @@ -6461,7 +6465,9 @@ Diese Dateien werden entfernt, wenn Sie mit dem Speichern fortfahren.Theme is currently used %s - + Das Design wird momentan benutzt + +%s @@ -6937,7 +6943,7 @@ Diese Dateien werden entfernt, wenn Sie mit dem Speichern fortfahren. - © + © Copyright symbol. © @@ -7508,19 +7514,19 @@ Bitte wählen Sie die Dateien einzeln aus. Replace live background is not available when the WebKit player is disabled. - + Der Live-Hintergund kann nicht ersetzt werden wenn der WebKit-Player deaktiviert ist. Songbook Singular - + Liederbuch Songbooks Plural - + Liederbücher @@ -8706,42 +8712,42 @@ Bitte geben Sie die Verse mit Leerzeichen getrennt ein. &Manage Authors, Topics, Songbooks - + A&utoren, Themen && Liederbücher Add &to Song - + &Zum Lied hinzufügen Re&move - + &Entfernen Authors, Topics && Songbooks - + Autoren, Themen && Liederbücher Add Songbook - + Zum Liederbuch hinzufügen This Songbook does not exist, do you want to add it? - + Dieses Liederbuch existiert nicht, möchten Sie es erstellen? This Songbook is already in the list. - + Dieses Liederbuch ist bereits in der Liste. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + Es wurde kein gültiges Liederbuch ausgewählt. Bitte wählen Sie ein Liederbuch aus der Liste oder geben Sie ein neues Liederbuch ein und drücken die Schaltfläche »Liederbuch hinzufügen«. @@ -9182,12 +9188,12 @@ Er wurde wegen einem fehlenden Python-Modul deaktiviert. Wenn Sie diesen Importe Are you sure you want to delete the "%d" selected song(s)? - + Sollen die markierten %d Lieder wirklich gelöscht werden? Search Songbooks... - + Suche Liederbücher... @@ -9275,7 +9281,7 @@ Er wurde wegen einem fehlenden Python-Modul deaktiviert. Wenn Sie diesen Importe Songbook Maintenance - + Liederbuchverwaltung @@ -9584,7 +9590,7 @@ Bitte "JA" wählen um das Passwort trotzdem zu speichern oder "NE Stop - + Abbrechen @@ -9689,12 +9695,12 @@ Bitte "JA" wählen um das Passwort trotzdem zu speichern oder "NE Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words - + Ungültige Words of Worship-Datei. Der „Wow-File\nSong-Words“-Header fehlt. Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock - + Ungültige Words of Worship-Datei. Der "CSongDoc::CBlock"-Text wurde nicht gefunden. @@ -9804,4 +9810,4 @@ Bitte "JA" wählen um das Passwort trotzdem zu speichern oder "NE Es wurden keine Duplikate gefunden. - + \ No newline at end of file diff --git a/resources/i18n/el.ts b/resources/i18n/el.ts index 899f917e2..bf0ad577b 100644 --- a/resources/i18n/el.ts +++ b/resources/i18n/el.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -33,7 +32,7 @@ <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. - + @@ -97,16 +96,16 @@ Do you want to continue anyway? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Η ειδοποίηση δεν περιέχει '<>'. Θέλετε να συνεχίσετε οπωσδήποτε; - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. - + @@ -659,37 +658,37 @@ Please type in some text before clicking New. : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 - + v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 - + V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 - + verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 - + verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 - + - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - + @@ -701,19 +700,19 @@ Please type in some text before clicking New. , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 - + and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 - + end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse - + @@ -931,7 +930,7 @@ search results and on display: Show verse numbers - + @@ -1267,27 +1266,27 @@ It is not possible to customize the Book Names. Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. - + Click to download bible list - + Download bible list - + Error during download - + An error occurred while downloading the list of bibles from %s. - + @@ -1428,7 +1427,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. - + @@ -1436,7 +1435,7 @@ You will need to re-import this Bible to use it again. Importing %(bookname)s %(chapter)s... - + @@ -1444,12 +1443,12 @@ You will need to re-import this Bible to use it again. Removing unused tags (this may take a few minutes)... - + Importing %(bookname)s %(chapter)s... - + @@ -1598,7 +1597,7 @@ Complete Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + @@ -1606,7 +1605,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. - + @@ -1614,7 +1613,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Importing %(bookname)s %(chapter)s... - + @@ -1680,7 +1679,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - + @@ -1698,7 +1697,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Import missing custom slides from service files - + @@ -1761,7 +1760,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I You need to add at least one slide. - + @@ -1777,7 +1776,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the "%d" selected custom slide(s)? - + @@ -1846,32 +1845,32 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Add group - + Parent group: - + Group name: - + You need to type in a group name. - + Could not add the new group. - + This group already exists. - + @@ -1879,27 +1878,27 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Select Image Group - + Add images to group: - + No group - + Existing group - + New group - + @@ -1952,22 +1951,22 @@ Do you want to add the other images anyway? -- Top-level group -- - + You must select an image or group to delete. - + Remove group - + Are you sure you want to remove "%s" and everything in it? - + @@ -1983,27 +1982,27 @@ Do you want to add the other images anyway? Audio - + Video - + VLC is an external player which supports a number of different formats. - + Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. - + This media player uses your operating system to provide media capabilities. - + @@ -2072,32 +2071,32 @@ Do you want to add the other images anyway? Select Media Clip - + Source - + Media path: - + Select drive from list - + Load disc - + Track Details - + @@ -2107,52 +2106,52 @@ Do you want to add the other images anyway? Audio track: - + Subtitle track: - + HH:mm:ss.z - + Clip Range - + Start point: - + Set start point - + Jump to start point - + End point: - + Set end point - + Jump to end point - + @@ -2160,67 +2159,67 @@ Do you want to add the other images anyway? No path was given - + Given path does not exists - + An error happened during initialization of VLC player - + VLC player failed playing the media - + CD not loaded correctly - + The CD was not loaded correctly, please re-load and try again. - + DVD not loaded correctly - + The DVD was not loaded correctly, please re-load and try again. - + Set name of mediaclip - + Name of mediaclip: - + Enter a valid name or cancel - + Invalid character - + The name of the mediaclip must not contain the character ":" - + @@ -2278,37 +2277,37 @@ Do you want to add the other images anyway? VLC player required - + VLC player required for playback of optical devices - + Load CD/DVD - + Load CD/DVD - only supported when VLC is installed and enabled - + The optical disc %s is no longer available. - + Mediaclip already saved - + This mediaclip has already been saved - + @@ -2321,7 +2320,7 @@ Do you want to add the other images anyway? Start Live items automatically - + @@ -2329,7 +2328,7 @@ Do you want to add the other images anyway? &Projector Manager - + @@ -2356,27 +2355,27 @@ Should OpenLP upgrade now? Backup - + OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? - + Backup of the data folder failed! - + A backup of the data folder has been created at %s - + Open - + @@ -2431,147 +2430,147 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr Project Lead - + Developers - + Contributors - + Packagers - + Testers - + Translators - + Afrikaans (af) - + Czech (cs) - + Danish (da) - + German (de) - + Greek (el) - + English, United Kingdom (en_GB) - + English, South Africa (en_ZA) - + Spanish (es) - + Estonian (et) - + Finnish (fi) - + French (fr) - + Hungarian (hu) - + Indonesian (id) - + Japanese (ja) - + - Norwegian Bokmål (nb) - + Norwegian Bokmål (nb) + Dutch (nl) - + Polish (pl) - + Portuguese, Brazil (pt_BR) - + Russian (ru) - + Swedish (sv) - + Tamil(Sri-Lanka) (ta_LK) - + Chinese(China) (zh_CN) - + Documentation - + @@ -2582,7 +2581,7 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ - + @@ -2597,13 +2596,13 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - + - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s - + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s + @@ -2885,17 +2884,17 @@ The data directory will be changed when OpenLP is closed. Thursday - + Display Workarounds - + Use alternating row colours in lists - + @@ -2906,17 +2905,17 @@ The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? - + Restart Required - + This change will only take effect once OpenLP has been restarted. - + @@ -2941,252 +2940,252 @@ This location will be used after OpenLP is closed. RGB - + Video - + Digital - + Storage - + Network - + RGB 1 - + RGB 2 - + RGB 3 - + RGB 4 - + RGB 5 - + RGB 6 - + RGB 7 - + RGB 8 - + RGB 9 - + Video 1 - + Video 2 - + Video 3 - + Video 4 - + Video 5 - + Video 6 - + Video 7 - + Video 8 - + Video 9 - + Digital 1 - + Digital 2 - + Digital 3 - + Digital 4 - + Digital 5 - + Digital 6 - + Digital 7 - + Digital 8 - + Digital 9 - + Storage 1 - + Storage 2 - + Storage 3 - + Storage 4 - + Storage 5 - + Storage 6 - + Storage 7 - + Storage 8 - + Storage 9 - + Network 1 - + Network 2 - + Network 3 - + Network 4 - + Network 5 - + Network 6 - + Network 7 - + Network 8 - + Network 9 - + @@ -3220,12 +3219,12 @@ This location will be used after OpenLP is closed. Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. - + @@ -3463,79 +3462,79 @@ To re-run the First Time Wizard and import this sample data at a later time, che There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. - + Download complete. Click the %s button to return to OpenLP. - + Download complete. Click the %s button to start OpenLP. - + Click the %s button to return to OpenLP. - + Click the %s button to start OpenLP. - + There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. - + This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. - + To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. - + Downloading Resource Index - + Please wait while the resource index is downloaded. - + Please wait while OpenLP downloads the resource index file... - + Downloading and Configuring - + Please wait while resources are downloaded and OpenLP is configured. - + Network Error - + There was a network error attempting to connect to retrieve initial configuration information - + @@ -3545,7 +3544,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Unable to download some files - + @@ -3578,12 +3577,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Default Formatting - + Custom Formatting - + @@ -3601,12 +3600,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Description is missing - + Tag is missing - + @@ -3616,17 +3615,17 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Description %s already defined. - + Start tag %s is not valid HTML - + End tag %(end)s does not match end tag for start tag %(start)s - + @@ -4340,12 +4339,12 @@ Re-running this wizard may make changes to your current OpenLP configuration and Library - + Jump to the search box of the current active plugin. - + @@ -4354,89 +4353,89 @@ Re-running this wizard may make changes to your current OpenLP configuration and Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. - + Projector Manager - + Toggle Projector Manager - + Toggle the visibility of the Projector Manager - + Export setting error - + The key "%s" does not have a default value so it will be skipped in this export. - + An error occurred while exporting the settings: %s - + &Recent Services - + &New Service - + &Open Service - + &Save Service - + Save Service &As... - + &Manage Plugins - + Exit OpenLP - + Are you sure you want to exit OpenLP? - + &Exit OpenLP - + @@ -4558,22 +4557,22 @@ Suffix not supported Unknown status - + No message - + Error while sending data to projector - + Undefined command: - + @@ -4581,7 +4580,7 @@ Suffix not supported Players - + @@ -4591,12 +4590,12 @@ Suffix not supported Player Search Order - + Visible background for videos with aspect ratio different to screen. - + @@ -4607,7 +4606,7 @@ Suffix not supported NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" - + @@ -4650,7 +4649,7 @@ Suffix not supported Manage Plugins - + @@ -4749,257 +4748,257 @@ Suffix not supported OK - + General projector error - + Not connected error - + Lamp error - + Fan error - + High temperature detected - + Cover open detected - + Check filter - + Authentication Error - + Undefined Command - + Invalid Parameter - + Projector Busy - + Projector/Display Error - + Invalid packet received - + Warning condition detected - + Error condition detected - + PJLink class not supported - + Invalid prefix character - + The connection was refused by the peer (or timed out) - + The remote host closed the connection - + The host address was not found - + The socket operation failed because the application lacked the required privileges - + The local system ran out of resources (e.g., too many sockets) - + The socket operation timed out - + The datagram was larger than the operating system's limit - + An error occurred with the network (Possibly someone pulled the plug?) - + The address specified with socket.bind() is already in use and was set to be exclusive - + The address specified to socket.bind() does not belong to the host - + The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) - + The socket is using a proxy, and the proxy requires authentication - + The SSL/TLS handshake failed - + The last operation attempted has not finished yet (still in progress in the background) - + Could not contact the proxy server because the connection to that server was denied - + The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) - + The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. - + The proxy address set with setProxy() was not found - + An unidentified error occurred - + Not connected - + Connecting - + Connected - + Getting status - + Off - + Initialize in progress - + Power in standby - + Warmup in progress - + Power is on - + Cooldown in progress - + Projector Information available - + Sending data - + Received data - + The connection negotiation with the proxy server failed because the response from the proxy server could not be understood - + @@ -5007,17 +5006,17 @@ Suffix not supported Name Not Set - + You must enter a name for this entry.<br />Please enter a new name for this entry. - + Duplicate Name - + @@ -5025,37 +5024,37 @@ Suffix not supported Add New Projector - + Edit Projector - + IP Address - + Port Number - + PIN - + Name - + Location - + @@ -5070,7 +5069,7 @@ Suffix not supported There was an error saving projector information. See the log for the error - + @@ -5078,162 +5077,162 @@ Suffix not supported Add Projector - + Add a new projector - + Edit Projector - + Edit selected projector - + Delete Projector - + Delete selected projector - + Select Input Source - + Choose input source on selected projector - + View Projector - + View selected projector information - + Connect to selected projector - + Connect to selected projectors - + Disconnect from selected projectors - + Disconnect from selected projector - + Power on selected projector - + Standby selected projector - + Put selected projector in standby - + Blank selected projector screen - + Show selected projector screen - + &View Projector Information - + &Edit Projector - + &Connect Projector - + D&isconnect Projector - + Power &On Projector - + Power O&ff Projector - + Select &Input - + Edit Input Source - + &Blank Projector Screen - + &Show Projector Screen - + &Delete Projector - + Name - + IP - + @@ -5248,102 +5247,102 @@ Suffix not supported Projector information not available at this time. - + Projector Name - + Manufacturer - + Model - + Other info - + Power status - + Shutter is - + Closed - + Current source input is - + Lamp - + On - + Off - + Hours - + No current errors or warnings - + Current errors/warnings - + Projector Information - + No message - + Not Implemented Yet - + Delete projector (%s) %s? - + Are you sure you want to delete this projector? - + @@ -5351,27 +5350,27 @@ Suffix not supported Fan - + Lamp - + Temperature - + Cover - + Filter - + @@ -5384,37 +5383,37 @@ Suffix not supported Projector - + Communication Options - + Connect to projectors on startup - + Socket timeout (seconds) - + Poll time (seconds) - + Tabbed dialog box - + Single dialog box - + @@ -5422,17 +5421,17 @@ Suffix not supported Duplicate IP Address - + Invalid IP Address - + Invalid Port Number - + @@ -5463,7 +5462,7 @@ Suffix not supported [slide %d] - + @@ -5739,79 +5738,79 @@ Suffix not supported &Rename... - + Create New &Custom Slide - + &Auto play slides - + Auto play slides &Loop - + Auto play slides &Once - + &Delay between slides - + OpenLP Service Files (*.osz *.oszl) - + OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) - + OpenLP Service Files (*.osz);; - + File is not a valid service. The content encoding is not UTF-8. - + The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. - + This file is either corrupt or it is not an OpenLP 2 service file. - + &Auto Start - inactive - + &Auto Start - active - + Input delay - + @@ -5821,7 +5820,7 @@ Suffix not supported Rename item title - + @@ -5831,14 +5830,14 @@ Suffix not supported An error occurred while writing the service file: %s - + The following file(s) in the service are missing: %s These files will be removed if you continue to save. - + @@ -6103,42 +6102,42 @@ These files will be removed if you continue to save. Select Projector Source - + Edit Projector Source Text - + Ignoring current changes and return to OpenLP - + Delete all user-defined text and revert to PJLink default text - + Discard changes and reset to previous user-defined text - + Save changes and return to OpenLP - + Delete entries for this projector - + Are you sure you want to delete ALL user-defined source input text for this projector? - + @@ -6424,29 +6423,29 @@ These files will be removed if you continue to save. The theme export failed because this error occurred: %s - + OpenLP Themes (*.otz) - + %s time(s) by %s - + Unable to delete theme - + Theme is currently used %s - + @@ -6739,17 +6738,17 @@ These files will be removed if you continue to save. Solid color - + color: - + Allows you to change and move the Main and Footer areas. - + @@ -6807,12 +6806,12 @@ These files will be removed if you continue to save. Universal Settings - + &Wrap footer text - + @@ -6922,7 +6921,7 @@ These files will be removed if you continue to save. - © + © Copyright symbol. © @@ -6983,17 +6982,17 @@ These files will be removed if you continue to save. Welcome to the Duplicate Song Removal Wizard - + Written by - + Author Unknown - + @@ -7008,7 +7007,7 @@ These files will be removed if you continue to save. Add group - + @@ -7125,13 +7124,13 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for File Not Found - + File %s not found. Please try selecting it individually. - + @@ -7207,25 +7206,25 @@ Please try selecting it individually. Manufacturer Singular - + Manufacturers Plural - + Model Singular - + Models Plural - + @@ -7322,13 +7321,13 @@ Please try selecting it individually. Projector Singular - + Projectors Plural - + @@ -7477,12 +7476,12 @@ Please try selecting it individually. CCLI song number: - + Preview Toolbar - + @@ -7492,19 +7491,19 @@ Please try selecting it individually. Replace live background is not available when the WebKit player is disabled. - + Songbook Singular - + Songbooks Plural - + @@ -7513,25 +7512,25 @@ Please try selecting it individually. %s and %s Locale list separator: 2 items - + %s, and %s Locale list separator: end - + %s, %s Locale list separator: middle - + %s, %s Locale list separator: start - + @@ -7539,7 +7538,7 @@ Please try selecting it individually. Source select dialog interface - + @@ -7651,7 +7650,7 @@ Please try selecting it individually. An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. - + @@ -7674,37 +7673,37 @@ Please try selecting it individually. PDF options - + Use given full path for mudraw or ghostscript binary: - + Select mudraw or ghostscript binary. - + The program is not ghostscript or mudraw which is required. - + PowerPoint options - + Clicking on a selected slide in the slidecontroller advances to next effect. - + Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). - + @@ -7735,12 +7734,12 @@ Please try selecting it individually. Server Config Change - + Server configuration changes will require a restart to take effect. - + @@ -7863,12 +7862,12 @@ Please try selecting it individually. Stage View - + Live View - + @@ -7911,27 +7910,27 @@ Please try selecting it individually. Live view URL: - + HTTPS Server - + Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. - + User Authentication - + User id: - + @@ -7941,12 +7940,12 @@ Please try selecting it individually. Show thumbnails of non-text slides in remote and stage view. - + Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. - + @@ -8061,12 +8060,12 @@ Please try selecting it individually. Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + All requested data has been deleted successfully. - + @@ -8124,17 +8123,17 @@ has been successfully created. You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + Report Creation Failed - + An error occurred while creating the report: %s - + @@ -8321,22 +8320,22 @@ The encoding is responsible for the correct character representation. CCLI SongSelect - + Import songs from CCLI's SongSelect service. - + Find &Duplicate Songs - + Find and remove duplicate songs in the song database. - + @@ -8345,25 +8344,25 @@ The encoding is responsible for the correct character representation. Words Author who wrote the lyrics of a song - + Music Author who wrote the music of a song - + Words and Music Author who wrote both lyrics and music of a song - + Translation Author who translated the song - + @@ -8417,7 +8416,7 @@ The encoding is responsible for the correct character representation. Invalid DreamBeam song file. Missing DreamSong tag. - + @@ -8430,43 +8429,43 @@ The encoding is responsible for the correct character representation. "%s" could not be imported. %s - + Unexpected data formatting. - + No song text found. - + [above are Song Tags with notes imported from EasyWorship] - + This file does not exist. - + Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. - + This file is not a valid EasyWorship database. - + Could not retrieve encoding. - + @@ -8647,79 +8646,79 @@ The encoding is responsible for the correct character representation. <strong>Warning:</strong> You have not entered a verse order. - + There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. - + Invalid Verse Order - + &Edit Author Type - + Edit Author Type - + Choose type for this author - + There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. - + &Manage Authors, Topics, Songbooks - + Add &to Song - + Re&move - + Authors, Topics && Songbooks - + Add Songbook - + This Songbook does not exist, do you want to add it? - + This Songbook is already in the list. - + You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + @@ -8825,7 +8824,7 @@ Please enter the verses separated by spaces. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. - + @@ -8833,7 +8832,7 @@ Please enter the verses separated by spaces. Invalid Foilpresenter song file. No verses found. - + @@ -9004,82 +9003,82 @@ Please enter the verses separated by spaces. EasyWorship Service File - + WorshipCenter Pro Song Files - + The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + PowerPraise Song Files - + PresentationManager Song Files - + ProPresenter 4 Song Files - + Worship Assistant Files - + Worship Assistant (CSV) - + In Worship Assistant, export your Database to a CSV file. - + OpenLyrics or OpenLP 2 Exported Song - + OpenLP 2 Databases - + LyriX Files - + LyriX (Exported TXT-files) - + VideoPsalm Files - + VideoPsalm - + The VideoPsalm songbooks are normally located in %s - + @@ -9087,7 +9086,7 @@ Please enter the verses separated by spaces. Error: %s - + @@ -9159,12 +9158,12 @@ Please enter the verses separated by spaces. Are you sure you want to delete the "%d" selected song(s)? - + Search Songbooks... - + @@ -9180,7 +9179,7 @@ Please enter the verses separated by spaces. Not a valid OpenLP 2 song database. - + @@ -9196,7 +9195,7 @@ Please enter the verses separated by spaces. Invalid OpenSong song file. Missing song tag. - + @@ -9252,7 +9251,7 @@ Please enter the verses separated by spaces. Songbook Maintenance - + @@ -9270,7 +9269,7 @@ Please enter the verses separated by spaces. Your song export failed because this error occurred: %s - + @@ -9414,12 +9413,12 @@ Please enter the verses separated by spaces. CCLI SongSelect Importer - + <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. - + @@ -9434,17 +9433,17 @@ Please enter the verses separated by spaces. Save username and password - + Login - + Search Text: - + @@ -9454,12 +9453,12 @@ Please enter the verses separated by spaces. Found %s song(s) - + Logout - + @@ -9474,7 +9473,7 @@ Please enter the verses separated by spaces. Author(s): - + @@ -9484,12 +9483,12 @@ Please enter the verses separated by spaces. CCLI Number: - + Lyrics: - + @@ -9504,62 +9503,62 @@ Please enter the verses separated by spaces. More than 1000 results - + Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. - + Logging out... - + Save Username and Password - + WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. - + Error Logging In - + There was a problem logging in, perhaps your username or password is incorrect? - + Song Imported - + Incomplete song - + This song is missing some information, like the lyrics, and cannot be imported. - + Your song has been imported, would you like to import more songs? - + Stop - + @@ -9587,12 +9586,12 @@ Please enter the verses separated by spaces. Display songbook in footer - + Display "%s" symbol before copyright info - + @@ -9656,7 +9655,7 @@ Please enter the verses separated by spaces. Error: %s - + @@ -9664,12 +9663,12 @@ Please enter the verses separated by spaces. Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words - + Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock - + @@ -9692,7 +9691,7 @@ Please enter the verses separated by spaces. File not valid WorshipAssistant CSV format. - + @@ -9705,7 +9704,7 @@ Please enter the verses separated by spaces. Unable to connect the WorshipCenter Pro database. - + @@ -9741,32 +9740,32 @@ Please enter the verses separated by spaces. Wizard - + This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. - + Searching for duplicate songs. - + Please wait while your songs database is analyzed. - + Here you can decide which songs to remove and which ones to keep. - + Review duplicate songs (%s/%s) - + @@ -9776,7 +9775,7 @@ Please enter the verses separated by spaces. No duplicate songs have been found in the database. - + - + \ No newline at end of file diff --git a/resources/i18n/en.ts b/resources/i18n/en.ts index d53d76310..f77eab94c 100644 --- a/resources/i18n/en.ts +++ b/resources/i18n/en.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -97,14 +96,14 @@ Do you want to continue anyway? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? The alert text does not contain '<>'. Do you want to continue anyway? - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. You haven't specified any text for your alert. Please type in some text before clicking New. @@ -2532,7 +2531,7 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) Norwegian Bokmål (nb) @@ -2619,8 +2618,8 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s @@ -6962,7 +6961,7 @@ These files will be removed if you continue to save. - © + © Copyright symbol. © @@ -7533,19 +7532,19 @@ Please try selecting it individually. Replace live background is not available when the WebKit player is disabled. - + Replace live background is not available when the WebKit player is disabled. Songbook Singular - + Songbook Songbooks Plural - + Songbooks @@ -8730,42 +8729,42 @@ Please enter the verses separated by spaces. &Manage Authors, Topics, Songbooks - + &Manage Authors, Topics, Songbooks Add &to Song - + Add &to Song Re&move - + Re&move Authors, Topics && Songbooks - + Authors, Topics && Songbooks Add Songbook - + Add Songbook This Songbook does not exist, do you want to add it? - + This Songbook does not exist, do you want to add it? This Songbook is already in the list. - + This Songbook is already in the list. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. @@ -9210,7 +9209,7 @@ Please enter the verses separated by spaces. Search Songbooks... - + Search Songbooks... @@ -9298,7 +9297,7 @@ Please enter the verses separated by spaces. Songbook Maintenance - + Songbook Maintenance @@ -9605,7 +9604,7 @@ Please enter the verses separated by spaces. Stop - + Stop @@ -9825,4 +9824,4 @@ Please enter the verses separated by spaces. No duplicate songs have been found in the database. - + \ No newline at end of file diff --git a/resources/i18n/en_GB.ts b/resources/i18n/en_GB.ts index b18fb81b7..41ccb0a6f 100644 --- a/resources/i18n/en_GB.ts +++ b/resources/i18n/en_GB.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -97,14 +96,14 @@ Do you want to continue anyway? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? The alert text does not contain '<>'. Do you want to continue anyway? - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. You haven't specified any text for your alert. Please type in some text before clicking New. @@ -1779,7 +1778,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the "%d" selected custom slide(s)? - + Are you sure you want to delete the %d selected custom slide(s)? @@ -2532,7 +2531,7 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) Norwegian Bokmål (nb) @@ -2619,8 +2618,8 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s @@ -6961,7 +6960,7 @@ These files will be removed if you continue to save. - © + © Copyright symbol. © @@ -7532,19 +7531,19 @@ Please try selecting it individually. Replace live background is not available when the WebKit player is disabled. - + Replace live background is not available when the WebKit player is disabled. Songbook Singular - + Songbook Songbooks Plural - + Songbooks @@ -8729,42 +8728,42 @@ Please enter the verses separated by spaces. &Manage Authors, Topics, Songbooks - + &Manage Authors, Topics, Songbooks Add &to Song - + Add &to Song Re&move - + Re&move Authors, Topics && Songbooks - + Authors, Topics && Songbooks Add Songbook - + Add Songbook This Songbook does not exist, do you want to add it? - + This Songbook does not exist, do you want to add it? This Songbook is already in the list. - + This Songbook is already in the list. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. @@ -9204,12 +9203,12 @@ Please enter the verses separated by spaces. Are you sure you want to delete the "%d" selected song(s)? - + Are you sure you want to delete the %d selected song(s)? Search Songbooks... - + Search Songbooks... @@ -9297,7 +9296,7 @@ Please enter the verses separated by spaces. Songbook Maintenance - + Songbook Maintenance @@ -9604,7 +9603,7 @@ Please enter the verses separated by spaces. Stop - + Stop @@ -9824,4 +9823,4 @@ Please enter the verses separated by spaces. No duplicate songs have been found in the database. - + \ No newline at end of file diff --git a/resources/i18n/en_ZA.ts b/resources/i18n/en_ZA.ts index 2d616d81f..1ab18207f 100644 --- a/resources/i18n/en_ZA.ts +++ b/resources/i18n/en_ZA.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -97,14 +96,14 @@ Do you want to continue anyway? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? The alert text does not contain '<>'. Do you want to continue anyway? - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. You haven't specified any text for your alert. Please type in some text before clicking New. @@ -1599,7 +1598,8 @@ Complete Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + Upgrading Bible(s): %(success)d successful%(failed_text)s +Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. @@ -1778,7 +1778,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the "%d" selected custom slide(s)? - + Are you sure you want to delete the "%d" selected custom slide(s)? @@ -2004,7 +2004,7 @@ Do you want to add the other images anyway? This media player uses your operating system to provide media capabilities. - + This media player uses your operating system to provide media capabilities. @@ -2432,147 +2432,147 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr Project Lead - + Project Lead Developers - + Developers Contributors - + Contributors Packagers - + Packagers Testers - + Testers Translators - + Translators Afrikaans (af) - + Afrikaans (af) Czech (cs) - + Czech (cs) Danish (da) - + Danish (da) German (de) - + German (de) Greek (el) - + Greek (el) English, United Kingdom (en_GB) - + English, United Kingdom (en_GB) English, South Africa (en_ZA) - + English, South Africa (en_ZA) Spanish (es) - + Spanish (es) Estonian (et) - + Estonian (et) Finnish (fi) - + Finnish (fi) French (fr) - + French (fr) Hungarian (hu) - + Hungarian (hu) Indonesian (id) - + Indonesian (id) Japanese (ja) - + Japanese (ja) - Norwegian Bokmål (nb) - + Norwegian Bokmål (nb) + Norwegian Bokmål (nb) Dutch (nl) - + Dutch (nl) Polish (pl) - + Polish (pl) Portuguese, Brazil (pt_BR) - + Portuguese, Brazil (pt_BR) Russian (ru) - + Russian (ru) Swedish (sv) - + Swedish (sv) Tamil(Sri-Lanka) (ta_LK) - + Tamil(Sri-Lanka) (ta_LK) Chinese(China) (zh_CN) - + Chinese(China) (zh_CN) Documentation - + Documentation @@ -2583,7 +2583,13 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ - + Built With + Python: http://www.python.org/ + Qt5: http://qt.io + PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro + Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ + MuPDF: http://www.mupdf.com/ + @@ -2598,13 +2604,24 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - + Final Credit + "For God so loved the world that He gave + His one and only Son, so that whoever + believes in Him will not perish but inherit + eternal life." -- John 3:16 + + And last but not least, final credit goes to + God our Father, for sending His Son to die + on the cross, setting us free from sin. We + bring this software to you for free because + He has set us free. - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s - + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s @@ -3227,12 +3244,13 @@ This location will be used after OpenLP is closed. Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) - + Please enter a description of what you were doing to cause this error. If possible, write in English. +(Minimum 20 characters) Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. @@ -3635,7 +3653,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s End tag %(end)s does not match end tag for start tag %(start)s - + End tag %(end)s does not match end tag for start tag %(start)s @@ -4185,7 +4203,7 @@ You can download the latest version from http://openlp.org/. English Please add the name of your language here - South African + English (ZA) @@ -4411,47 +4429,47 @@ Processing has terminated and no changes have been made. &Recent Services - + &Recent Services &New Service - + &New Service &Open Service - + &Open Service &Save Service - + &Save Service Save Service &As... - + Save Service &As... &Manage Plugins - + &Manage Plugins Exit OpenLP - + Exit OpenLP Are you sure you want to exit OpenLP? - + Are you sure you want to exit OpenLP? &Exit OpenLP - + &Exit OpenLP @@ -4622,7 +4640,7 @@ Suffix not supported NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" - + NOTE: To use VLC you must install the %s version @@ -4665,7 +4683,7 @@ Suffix not supported Manage Plugins - + Manage Plugins @@ -6453,19 +6471,21 @@ These files will be removed if you continue to save. %s time(s) by %s - + %s time(s) by %s Unable to delete theme - + Unable to delete theme Theme is currently used %s - + Theme is currently used + +%s @@ -6941,7 +6961,7 @@ These files will be removed if you continue to save. - © + © Copyright symbol. © @@ -7512,19 +7532,19 @@ Please try selecting it individually. Replace live background is not available when the WebKit player is disabled. - + Replace live background is not available when the WebKit player is disabled. Songbook Singular - + Songbook Songbooks Plural - + Songbooks @@ -8703,47 +8723,48 @@ Please enter the verses separated by spaces. There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. - + There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. +Please enter the verses separated by spaces. &Manage Authors, Topics, Songbooks - + &Manage Authors, Topics, Songbooks Add &to Song - + Add &to Song Re&move - + Re&move Authors, Topics && Songbooks - + Authors, Topics && Songbooks Add Songbook - + Add Songbook This Songbook does not exist, do you want to add it? - + This Songbook does not exist, do you want to add it? This Songbook is already in the list. - + This Songbook is already in the list. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. @@ -9073,37 +9094,37 @@ Please enter the verses separated by spaces. OpenLyrics or OpenLP 2 Exported Song - + OpenLyrics or OpenLP 2 Exported Song OpenLP 2 Databases - + OpenLP 2 Databases LyriX Files - + LyriX Files LyriX (Exported TXT-files) - + LyriX (Exported TXT-files) VideoPsalm Files - + VideoPsalm Files VideoPsalm - + VideoPsalm The VideoPsalm songbooks are normally located in %s - + The VideoPsalm songbooks are normally located in %s @@ -9111,7 +9132,7 @@ Please enter the verses separated by spaces. Error: %s - + Error: %s @@ -9183,12 +9204,12 @@ Please enter the verses separated by spaces. Are you sure you want to delete the "%d" selected song(s)? - + Are you sure you want to delete the "%d" selected song(s)? Search Songbooks... - + Search Songbooks... @@ -9204,7 +9225,7 @@ Please enter the verses separated by spaces. Not a valid OpenLP 2 song database. - + Not a valid OpenLP 2 song database. @@ -9276,7 +9297,7 @@ Please enter the verses separated by spaces. Songbook Maintenance - + Songbook Maintenance @@ -9583,7 +9604,7 @@ Please enter the verses separated by spaces. Stop - + Stop @@ -9680,7 +9701,7 @@ Please enter the verses separated by spaces. Error: %s - + Error: %s @@ -9688,12 +9709,12 @@ Please enter the verses separated by spaces. Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words - + Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock - + Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock @@ -9803,4 +9824,4 @@ Please enter the verses separated by spaces. No duplicate songs have been found in the database. - + \ No newline at end of file diff --git a/resources/i18n/es.ts b/resources/i18n/es.ts index 87e16e56e..912dab23d 100644 --- a/resources/i18n/es.ts +++ b/resources/i18n/es.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -97,14 +96,14 @@ Do you want to continue anyway? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? El texto del Aviso contiene '< >'. ¿Desea continuar de todos modos? - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. No ha especificado ningún texto para su Aviso. Por favor, escriba algún texto antes de hacer clic en Nuevo. @@ -2533,7 +2532,7 @@ OpenLP es desarrollado y mantenido por voluntarios. Si desea apoyar la creación - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) Norwegian Bokmål (nb) @@ -2622,8 +2621,8 @@ porque sin costo Él nos hizo libres. - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s @@ -6966,7 +6965,7 @@ Estos archivos serán removidos si continua. - © + © Copyright symbol. © @@ -7537,19 +7536,19 @@ Por favor intente seleccionarlo individualmente. Replace live background is not available when the WebKit player is disabled. - + Songbook Singular - + Songbooks Plural - + @@ -8732,42 +8731,42 @@ Por favor, introduzca los Versículos separados por espacios. &Manage Authors, Topics, Songbooks - + Add &to Song - + Re&move - + Authors, Topics && Songbooks - + Add Songbook - + This Songbook does not exist, do you want to add it? - + This Songbook is already in the list. - + You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + @@ -9212,7 +9211,7 @@ Por favor, introduzca los Versículos separados por espacios. Search Songbooks... - + @@ -9300,7 +9299,7 @@ Por favor, introduzca los Versículos separados por espacios. Songbook Maintenance - + @@ -9607,7 +9606,7 @@ Por favor, introduzca los Versículos separados por espacios. Stop - + @@ -9829,4 +9828,4 @@ No existe "%s" string.CSongDoc::CBlock No se encontraron canciones duplicadas en la base de datos. - + \ No newline at end of file diff --git a/resources/i18n/et.ts b/resources/i18n/et.ts index 5fdd8597c..039feaaff 100644 --- a/resources/i18n/et.ts +++ b/resources/i18n/et.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -97,14 +96,14 @@ Kas tahad siiski jätkata? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Teate tekst ei sisalda '<>' märke. Kas tahad siiski jätkata? - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. Sa pole oma teatele teksti lisanud. Enne nupu Uus vajutamist sisesta mingi tekst. @@ -1778,7 +1777,7 @@ Palun pane tähele, et veebipiiblitest laaditakse salmid alla siis, kui neid kas Are you sure you want to delete the "%d" selected custom slide(s)? - + @@ -2531,7 +2530,7 @@ OpenLP on kirjutanud ja seda haldavad vabatahtlikud. Kui sa tahad näha rohkem t - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) Norra Bokmål (nb) @@ -2619,8 +2618,8 @@ on meid vabaks teinud. - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s Autoriõigus © 2004-2016 %s Osaline autoriõigus © 2004-2016 %s @@ -6962,7 +6961,7 @@ Need failid eemaldatakse, kui sa otsustad siiski salvestada. - © + © Copyright symbol. © @@ -7533,19 +7532,19 @@ Palun vali see eraldi. Replace live background is not available when the WebKit player is disabled. - + Songbook Singular - + Songbooks Plural - + @@ -8729,42 +8728,42 @@ Palun eralda salmid tühikutega. &Manage Authors, Topics, Songbooks - + Add &to Song - + Re&move - + Authors, Topics && Songbooks - + Add Songbook - + This Songbook does not exist, do you want to add it? - + This Songbook is already in the list. - + You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + @@ -9204,12 +9203,12 @@ Palun eralda salmid tühikutega. Are you sure you want to delete the "%d" selected song(s)? - + Search Songbooks... - + @@ -9297,7 +9296,7 @@ Palun eralda salmid tühikutega. Songbook Maintenance - + @@ -9604,7 +9603,7 @@ Palun eralda salmid tühikutega. Stop - + @@ -9824,4 +9823,4 @@ Palun eralda salmid tühikutega. Andmebaasist ei leitud ühtegi dubleerivat laulu. - + \ No newline at end of file diff --git a/resources/i18n/fi.ts b/resources/i18n/fi.ts index 6b018423a..7c70d0ecb 100644 --- a/resources/i18n/fi.ts +++ b/resources/i18n/fi.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -99,7 +98,7 @@ Do you want to continue anyway? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Viestissä ei ole <> muuttujaa. Haluatko jatkaa siitä huolimatta? @@ -113,7 +112,7 @@ Näytetään: Auto ABC-123 tukkii pelastustien. - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. Tyhjää pohjaa ei voida luoda, viesti ei voi olla tyhjä. @@ -965,17 +964,17 @@ hakutuloksissa ja näytöllä. Current name: - <font size="4”>Kirjan nimi:</font> + Kirjan nimi: Corresponding name: - <font size="4”>Vastaava nimi:</font> + Vastaava nimi: Show Books From - <font size="4”>Näytä nimilistassa</font> + Näytä nimilistassa @@ -995,8 +994,8 @@ hakutuloksissa ja näytöllä. The following book name cannot be matched up internally. Please select the corresponding name from the list. - <font size="4">Kirjanimeä ei tunnistettu, ole hyvä ja valitse <br> -listasta vastaava suomenkielinen käännös</font> + Kirjanimeä ei tunnistettu, ole hyvä ja valitse <br> +listasta vastaava suomenkielinen käännös @@ -1817,7 +1816,8 @@ tiettyjä tarkoituksia varten. Are you sure you want to delete the "%d" selected custom slide(s)? - Haluatko varmasti poistaa valitut tekstidiat? + Haluatko varmasti poistaa valitut tekstidiat? +Valittuna poistettavaksi on: %d dia/diaa @@ -2409,7 +2409,7 @@ Pitäisikö OpenLP:n päivittää ne nyt? Backup - Varmuuskopioi + Varmuuskopinti @@ -2598,7 +2598,7 @@ ottaa selvää eri tavoista olla mukana. (Sivusto Englanniksi.) - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) Norja (nb) @@ -2688,8 +2688,8 @@ Kuolihan Jeesus puolestamme vaikkemme sitä ansainneet. - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s Tekijäinoikeudet © 2004-2016 %s Osittaiset tekijäinoikeudet © 2004-2016 %s @@ -4474,12 +4474,12 @@ Ole hyvä ja odota kopioinnin loppumista. Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - <font size="4">Haluatko varmasti tuoda asetukset?<br><br> + Haluatko varmasti tuoda asetukset?<br><br> Asetusten tuominen muuttaa sovelluksen käyttämiä asetuksia.<br><br> Viallinen asetustiedosto voi aiheuttaa virheellistä<br> -toimintaa ja ohjelma saattaa sulkeutua yllättäen..</font> +toimintaa ja ohjelma saattaa sulkeutua yllättäen. @@ -7091,7 +7091,7 @@ sillä kohdekohtaiset ja Listan teemat. - © + © Copyright symbol. © @@ -7662,19 +7662,20 @@ Ole hyvä ja yritä valita se erikseen. Replace live background is not available when the WebKit player is disabled. - + Taustakuvan korvaaminen ei ole käytettävissä jos WebKit +mediasoitinta ei ole otettu käyttöön asetuksista. Songbook Singular - + Laulukirja Songbooks Plural - + Laulukirjat @@ -8888,42 +8889,43 @@ Ole hyvä ja syötä jaeviitteet välilyönnein erotettuina. &Manage Authors, Topics, Songbooks - + &Muokkaa Tekijöitä, Aiheita ja Laulukirjoja Add &to Song - + Lisää &Lauluun Re&move - + &Poista Authors, Topics && Songbooks - + Tekijät - Aiheet - Laulukirjat Add Songbook - + Lisää Laulukirja This Songbook does not exist, do you want to add it? - + Laulukirjaa ei ole olemassa, haluatko luoda sen? This Songbook is already in the list. - + Laulukirja on jo listassa You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + Et ole valinnut kelvollista laulukirjaa. Valitse laulukirja listasta tai lisää +uusi laulukirja painamalla ”Lisää lauluun” painiketta. @@ -9366,12 +9368,13 @@ Paina ”Seuraava” aloittaaksesi.</font> Are you sure you want to delete the "%d" selected song(s)? - Haluatko varmasti poistaa valitut laulut? + Haluatko varmasti poistaa valitut laulut? +Valittuna poistettavaksi on: %d laulu/laulua Search Songbooks... - + Hae Laulukirjan mukaan... @@ -9459,7 +9462,7 @@ Paina ”Seuraava” aloittaaksesi.</font> Songbook Maintenance - + Laulukirjan ylläpito @@ -9766,7 +9769,7 @@ Paina ”Seuraava” aloittaaksesi.</font> Stop - + Lopeta @@ -9989,4 +9992,4 @@ Avustaja ei siis poista lauluja ilman hyväksyntääsi. Päällekkäisiä lauluja ei löytynyt. - + \ No newline at end of file diff --git a/resources/i18n/fr.ts b/resources/i18n/fr.ts index 98b14325e..30d4f0fdc 100644 --- a/resources/i18n/fr.ts +++ b/resources/i18n/fr.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -97,14 +96,14 @@ Voulez-vous tout de même continuer ? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Le texte d'alerte ne contient pas '<>'. Voulez-vous tout de même continuer ? - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. Vous n'avez pas spécifié de texte pour votre alerte. Veuillez entrer votre message puis cliquer sur Nouveau. @@ -2532,7 +2531,7 @@ OpenLP est développé et maintenu par des bénévoles. Si vous souhaitez voir d - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) Norvégien bokmål (nb) @@ -2612,8 +2611,8 @@ Le crédit final revient à Dieu notre père pour avoir envoyé son fils mourir - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s @@ -6954,7 +6953,7 @@ Ces fichiers seront supprimés si vous continuez la sauvegarde. - © + © Copyright symbol. © @@ -7525,19 +7524,19 @@ Essayez de le sélectionner à part. Replace live background is not available when the WebKit player is disabled. - + Songbook Singular - + Songbooks Plural - + @@ -8722,42 +8721,42 @@ Veuillez entrer les strophes séparées par des espaces. &Manage Authors, Topics, Songbooks - + Add &to Song - + Re&move - + Authors, Topics && Songbooks - + Add Songbook - + This Songbook does not exist, do you want to add it? - + This Songbook is already in the list. - + You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + @@ -9202,7 +9201,7 @@ Veuillez entrer les strophes séparées par des espaces. Search Songbooks... - + @@ -9290,7 +9289,7 @@ Veuillez entrer les strophes séparées par des espaces. Songbook Maintenance - + @@ -9598,7 +9597,7 @@ Veuillez affiner votre recherche. Stop - + @@ -9818,4 +9817,4 @@ Veuillez affiner votre recherche. Pas de chants en double trouvé dans la base de données. - + \ No newline at end of file diff --git a/resources/i18n/hu.ts b/resources/i18n/hu.ts index 1a5c82cfa..739663afc 100644 --- a/resources/i18n/hu.ts +++ b/resources/i18n/hu.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -97,14 +96,14 @@ Folytatható? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? A riasztás szövege nem tartalmaz „<>” karaktereket. Folytatható? - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. A riasztás szövege nincs megadva. Adj meg valamilyen szöveget az Új gombra való kattintás előtt. @@ -2532,7 +2531,7 @@ Az OpenLP-t önkéntesek készítették és tartják karban. Ha szeretnél több - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) Norvég bokmål (nb) @@ -2619,8 +2618,8 @@ mert Ő tett minket szabaddá. - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s Szerzői jog © 2004-2016 %s Részleges szerzői jog © 2004-2016 %s @@ -6962,7 +6961,7 @@ Ezen fájlok el lesznek távolítva, ha folytatódik a mentés. - © + © Copyright symbol. © @@ -7533,19 +7532,19 @@ Meg lehet próbálni egyenként kijelölni a fájlokat. Replace live background is not available when the WebKit player is disabled. - + Az élő háttér cseréje nem elérhető, ha a WebKit lejátszó tiltva van. Songbook Singular - + Énekeskönyv Songbooks Plural - + Énekeskönyvek @@ -8727,42 +8726,42 @@ A versszakokat szóközzel elválasztva kell megadni. &Manage Authors, Topics, Songbooks - + Szerző, témakör, könyv &kezelése Add &to Song - + Hozzáadás a &dalhoz Re&move - + &Eltávolítás Authors, Topics && Songbooks - + Szerző, témakör és könyv Add Songbook - + Énekeskönyv hozzáadása This Songbook does not exist, do you want to add it? - + Ez az énekeskönyv még nem létezik, szeretnéd hozzáadni a listához? This Songbook is already in the list. - + Ez a énekeskönyv már szerepel a listában. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + Nincs kijelölve egyetlen énekeskönyv sem. Vagy válassz egy énekeskönyvet a listából, vagy írj az új énekeskönyv mezőbe és kattints a Hozzáadás gombra az énekeskönyv megjelöléséhez. @@ -9207,7 +9206,7 @@ A versszakokat szóközzel elválasztva kell megadni. Search Songbooks... - + Énekeskönyvek keresése… @@ -9295,7 +9294,7 @@ A versszakokat szóközzel elválasztva kell megadni. Songbook Maintenance - + Énekeskönyvek kezelése @@ -9602,7 +9601,7 @@ A versszakokat szóközzel elválasztva kell megadni. Stop - + Megállítás @@ -9707,12 +9706,12 @@ A versszakokat szóközzel elválasztva kell megadni. Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words - Érvénytelen Words of Worship dalfájl. Hiányzik a „WoW File\nSong Words” fejléc. + Érvénytelen Words of Worship dalfájl. Hiányzik: „%s” header.WoW File\nSong Words Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock - Érvénytelen Words of Worship dalfájl. Hiányzik a „stringCSongDoc::CBlock” karakterlánc. + Érvénytelen Words of Worship dalfájl. Hiányzik: „%s” string.CSongDoc::CBlock @@ -9822,4 +9821,4 @@ A versszakokat szóközzel elválasztva kell megadni. Nem találhatóak duplikált dalok az adatbázisban. - + \ No newline at end of file diff --git a/resources/i18n/id.ts b/resources/i18n/id.ts index f1583a503..48c6983cb 100644 --- a/resources/i18n/id.ts +++ b/resources/i18n/id.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -97,14 +96,14 @@ Tetap lanjutkan? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Teks peringatan tidak berisikan '<>'. Tetap lanjutkan? - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. Teks isi peringatan belum ditentukan. Silakan masukkan teks sebelum memilih Baru. @@ -2532,7 +2531,7 @@ OpenLP dibuat dan dikelola oleh sukarelawan. Jika Anda ingin menyaksikan lebih b - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) Bokmål Norwegia (nb) @@ -2620,8 +2619,8 @@ OpenLP dibuat dan dikelola oleh sukarelawan. Jika Anda ingin menyaksikan lebih b - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s Hak cipta © 2004-2016 %s Bagian hak cipta © 2004-2016 %s @@ -6963,7 +6962,7 @@ Berkas-berkas ini akan dihapus apabila Anda lanjutkan menyimpan. - © + © Copyright symbol. © @@ -7534,19 +7533,19 @@ Silakan coba memilih secara individu. Replace live background is not available when the WebKit player is disabled. - + Ganti latar tayang tidak tersedia jika pemutar WebKit dinonaktifkan. Songbook Singular - + Buku Lagu Songbooks Plural - + Buku-buku Lagu @@ -8731,42 +8730,42 @@ Silakan masukkan bait-bait tersebut dan pisahkan dengan spasi. &Manage Authors, Topics, Songbooks - + &Kelola Pengarang, Topik, Buku Lagu Add &to Song - + Tambahkan &ke Lagu Re&move - + Ha&pus Authors, Topics && Songbooks - + Pengarang, Topik, && Buku Lagu Add Songbook - + Tambahkan Buku Lagu This Songbook does not exist, do you want to add it? - + Buku lagu ini tidak ada, Anda ingin menambahkannya? This Songbook is already in the list. - + Buku Lagu ini sudah ada dalam daftar. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + Anda belum memilih Buku Lagu yang valid. Pilihlah sebuah Buku Lagu dari daftar, atau ketik sebuah Buku Lagu baru dan klik tombol "Tambahkan ke Lagu" untuk menambahkan Buku Lagu baru tersebut. @@ -9211,7 +9210,7 @@ Silakan masukkan bait-bait tersebut dan pisahkan dengan spasi. Search Songbooks... - + Telusuri Buku Lagu... @@ -9299,7 +9298,7 @@ Silakan masukkan bait-bait tersebut dan pisahkan dengan spasi. Songbook Maintenance - + Pengelolaan Buku Lagu @@ -9606,7 +9605,7 @@ Silakan masukkan bait-bait tersebut dan pisahkan dengan spasi. Stop - + Stop @@ -9826,4 +9825,4 @@ Silakan masukkan bait-bait tersebut dan pisahkan dengan spasi. Lagu duplikat tidak ditemukan di basis-data. - + \ No newline at end of file diff --git a/resources/i18n/ja.ts b/resources/i18n/ja.ts index 9376c0803..a2fb19e78 100644 --- a/resources/i18n/ja.ts +++ b/resources/i18n/ja.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -97,14 +96,14 @@ Do you want to continue anyway? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? 警告テキストは、'<>'を含みません。 処理を続けてもよろしいですか? - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. 警告テキストが何も指定されていません。 新規作成をクリックする前にテキストを入力してください。 @@ -1597,7 +1596,7 @@ Complete Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + @@ -1776,7 +1775,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the "%d" selected custom slide(s)? - + @@ -2002,7 +2001,7 @@ Do you want to add the other images anyway? This media player uses your operating system to provide media capabilities. - + @@ -2426,147 +2425,147 @@ OpenLP は、教会専用のフリーのプレゼンテーション及び賛美 Project Lead - + Developers - + Contributors - + Packagers - + Testers - + Translators - + Afrikaans (af) - + Czech (cs) - + Danish (da) - + German (de) - + Greek (el) - + English, United Kingdom (en_GB) - + English, South Africa (en_ZA) - + Spanish (es) - + Estonian (et) - + Finnish (fi) - + French (fr) - + Hungarian (hu) - + Indonesian (id) - + Japanese (ja) - + - Norwegian Bokmål (nb) - + Norwegian Bokmål (nb) + Dutch (nl) - + Polish (pl) - + Portuguese, Brazil (pt_BR) - + Russian (ru) - + Swedish (sv) - + Tamil(Sri-Lanka) (ta_LK) - + Chinese(China) (zh_CN) - + Documentation - + @@ -2577,7 +2576,7 @@ OpenLP は、教会専用のフリーのプレゼンテーション及び賛美 Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ - + @@ -2592,13 +2591,13 @@ OpenLP は、教会専用のフリーのプレゼンテーション及び賛美 on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - + - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s - + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s + @@ -3218,12 +3217,12 @@ This location will be used after OpenLP is closed. Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. - + @@ -3626,7 +3625,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s End tag %(end)s does not match end tag for start tag %(start)s - + @@ -4402,47 +4401,47 @@ Processing has terminated and no changes have been made. &Recent Services - + &New Service - + &Open Service - + &Save Service - + Save Service &As... - + &Manage Plugins - + Exit OpenLP - + Are you sure you want to exit OpenLP? - + &Exit OpenLP - + @@ -4613,7 +4612,7 @@ Suffix not supported NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" - + @@ -4656,7 +4655,7 @@ Suffix not supported Manage Plugins - + @@ -5344,12 +5343,12 @@ Suffix not supported Delete projector (%s) %s? - + Are you sure you want to delete this projector? - + @@ -6444,19 +6443,19 @@ These files will be removed if you continue to save. %s time(s) by %s - + Unable to delete theme - + Theme is currently used %s - + @@ -6932,7 +6931,7 @@ These files will be removed if you continue to save. - © + © Copyright symbol. © @@ -7503,19 +7502,19 @@ Please try selecting it individually. Replace live background is not available when the WebKit player is disabled. - + Songbook Singular - + Songbooks Plural - + @@ -7874,12 +7873,12 @@ Please try selecting it individually. Stage View - + Live View - + @@ -7957,7 +7956,7 @@ Please try selecting it individually. Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. - + @@ -8690,47 +8689,47 @@ Please enter the verses separated by spaces. There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. - + &Manage Authors, Topics, Songbooks - + Add &to Song - + Re&move - + Authors, Topics && Songbooks - + Add Songbook - + This Songbook does not exist, do you want to add it? - + This Songbook is already in the list. - + You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + @@ -9060,37 +9059,37 @@ Please enter the verses separated by spaces. OpenLyrics or OpenLP 2 Exported Song - + OpenLP 2 Databases - + LyriX Files - + LyriX (Exported TXT-files) - + VideoPsalm Files - + VideoPsalm - + The VideoPsalm songbooks are normally located in %s - + @@ -9098,7 +9097,7 @@ Please enter the verses separated by spaces. Error: %s - + @@ -9170,12 +9169,12 @@ Please enter the verses separated by spaces. Are you sure you want to delete the "%d" selected song(s)? - + Search Songbooks... - + @@ -9191,7 +9190,7 @@ Please enter the verses separated by spaces. Not a valid OpenLP 2 song database. - + @@ -9263,7 +9262,7 @@ Please enter the verses separated by spaces. Songbook Maintenance - + @@ -9570,7 +9569,7 @@ Please enter the verses separated by spaces. Stop - + @@ -9603,7 +9602,7 @@ Please enter the verses separated by spaces. Display "%s" symbol before copyright info - + @@ -9667,7 +9666,7 @@ Please enter the verses separated by spaces. Error: %s - + @@ -9675,12 +9674,12 @@ Please enter the verses separated by spaces. Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words - + Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock - + @@ -9790,4 +9789,4 @@ Please enter the verses separated by spaces. データベースに重複する賛美は見つかりませんでした。 - + \ No newline at end of file diff --git a/resources/i18n/ko.ts b/resources/i18n/ko.ts index 4a4a9b35b..b4e685ad1 100644 --- a/resources/i18n/ko.ts +++ b/resources/i18n/ko.ts @@ -1,39 +1,38 @@ - - + AlertsPlugin &Alert - 경고(&A) + 알림 Show an alert message. - 에러 메세지를 보여줍니다. + 알림 메세지를 보여줍니다. Alert name singular - 경고 + 알림 Alerts name plural - 경고 + 알림 Alerts container title - 경고 + 알림 <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. - <strong>경고 플러그인</strong><br />경고 플러그인은 화면상의 경고 표시를 설정합니다. + <strong>알림 플러그인</strong><br />알림 플러그인은 화면상의 알림 표시를 설정합니다. @@ -41,12 +40,12 @@ Alert Message - 경고 메세지 + 알림 메세지 Alert &text: - 경고 문구(&T): + 알림 문구(&T): @@ -71,7 +70,7 @@ New Alert - 새 경고 + 새 알림 @@ -87,8 +86,8 @@ You have not entered a parameter to be replaced. Do you want to continue anyway? - 바꿀 수 있는 매개변수를 입력하지 않았습니다. -그래도 계속 진행할까요? + 변경할 매개변수를 입력하지 않았습니다. +계속 진행할까요? @@ -97,17 +96,17 @@ Do you want to continue anyway? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? - 경고문에 '<>'가 없습니다. -그래도 계속 진행할까요? + 알림문에 '<>'가 없습니다. +계속 진행할까요? - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. - 경고 표시 문구를 지정하지 않았습니다. -새로 만들기를 누르기 전에 문구를 입력하십시오. + 알림 표시 문구를 지정하지 않았습니다. +새로 만들기를 누르기 전에 문구를 입력하세요. @@ -115,7 +114,7 @@ Please type in some text before clicking New. Alert message created and displayed. - 경고 메세지를 만들고 표시했습니다. + 알림 메세지를 만들고 표시했습니다. @@ -189,42 +188,42 @@ Please type in some text before clicking New. Import a Bible. - 성경을 가져옵니다. + 성경 가져오기. Add a new Bible. - 새 성경을 추가합니다. + 새성경 추가하기. Edit the selected Bible. - 선택한 성경을 수정합니다. + 선택한 성경 수정하기. Delete the selected Bible. - 선택한 성경을 삭제합니다. + 선택한 성경 삭제하기. Preview the selected Bible. - 선택한 성경을 미리봅니다. + 선택한 성경 미리보기. Send the selected Bible live. - 선택한 성경을 라이브로 보냅니다. + 선택한 성경 실황로 보내기. Add the selected Bible to the service. - 선택한 성경을 서비스로 보냅니다. + 선택한 성경 예배 항목으로 보내기. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. - <strong>성경 플러그인</ STRONG> <br />는 성경플러그인은 예배 중에 서로 다른 원본에서 성경 구절을 불러와 표시 하는 기능을 제공합니다. + <strong>성경 플러그인</ STRONG> <br /> 성경플러그인은 예배 중에 서로 다른 원본에서 성경 구절을 불러와 표시 하는 기능을 제공합니다. @@ -359,7 +358,7 @@ Please type in some text before clicking New. Lamentations - 애가 + 예레미야애가 @@ -414,7 +413,7 @@ Please type in some text before clicking New. Zephaniah - 스바니아 + 스바냐 @@ -424,7 +423,7 @@ Please type in some text before clicking New. Zechariah - 즈가리야 + 스가랴 @@ -494,22 +493,22 @@ Please type in some text before clicking New. 1 Thessalonians - 테살로니카전서 + 데살로니가전서 2 Thessalonians - 테살로니카후서 + 데살로니가후서 1 Timothy - 티모테오전서 + 디모데전서 2 Timothy - 티모테오후서 + 디모데후서 @@ -519,7 +518,7 @@ Please type in some text before clicking New. Philemon - 필레몬서 + 빌레몬서 @@ -750,7 +749,7 @@ Please type in some text before clicking New. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. "%s" 서명이 올바르지 않습니다. -숫자는 시작 부분에 사용할 수 있으며 하나 이상의 비숫자 문자가 따라와야합니다. +숫자는 시작 부분에 만 사용할 수 있으며 하나 이상의 비숫자 문자가 따라와야합니다. @@ -838,7 +837,7 @@ Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse No Brackets - 꺽쇠괄호 안보이기 + 괄호 숨기기 @@ -931,7 +930,7 @@ search results and on display: Show verse numbers - 절 번호 표시 + 구절 번호 표시 @@ -982,7 +981,7 @@ search results and on display: You need to select a book. - 책을 선택해야합니다. + 선경책을 선택해야합니다. @@ -990,7 +989,7 @@ search results and on display: Importing books... %s - 책을 가져오는 중... %s + 선경책을 가져오는 중... %s @@ -1003,7 +1002,7 @@ search results and on display: Bible Editor - 성경 편집기 + 성경 편집 @@ -1598,7 +1597,7 @@ Complete Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + @@ -1777,7 +1776,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the "%d" selected custom slide(s)? - + @@ -2003,7 +2002,7 @@ Do you want to add the other images anyway? This media player uses your operating system to provide media capabilities. - + @@ -2399,12 +2398,12 @@ Should OpenLP upgrade now? 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. - + @@ -2415,157 +2414,157 @@ OpenLP is free church presentation software, or lyrics projection software, used 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 volunteering by using the button below. - + Volunteer - + Project Lead - + Developers - + Contributors - + Packagers - + Testers - + Translators - + Afrikaans (af) - + Czech (cs) - + Danish (da) - + German (de) - + Greek (el) - + English, United Kingdom (en_GB) - + English, South Africa (en_ZA) - + Spanish (es) - + Estonian (et) - + Finnish (fi) - + French (fr) - + Hungarian (hu) - + Indonesian (id) - + Japanese (ja) - + - Norwegian Bokmål (nb) - + Norwegian Bokmål (nb) + Dutch (nl) - + Polish (pl) - + Portuguese, Brazil (pt_BR) - + Russian (ru) - + Swedish (sv) - + Tamil(Sri-Lanka) (ta_LK) - + Chinese(China) (zh_CN) - + Documentation - + @@ -2576,7 +2575,7 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ - + @@ -2591,13 +2590,13 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - + - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s - + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s + @@ -2884,12 +2883,12 @@ The data directory will be changed when OpenLP is closed. Display Workarounds - + Use alternating row colours in lists - + @@ -2923,7 +2922,7 @@ appears to contain OpenLP data files. Do you wish to replace these files with th Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + @@ -3212,18 +3211,18 @@ This location will be used after OpenLP is closed. Description characters to enter : %s - + Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. - + @@ -3232,7 +3231,7 @@ This location will be used after OpenLP is closed. Platform: %s - + @@ -3250,12 +3249,12 @@ This location will be used after OpenLP is closed. File Rename - + New File Name: - + @@ -3268,12 +3267,12 @@ This location will be used after OpenLP is closed. Select Translation - + Choose the translation you'd like to use in OpenLP. - + @@ -3296,17 +3295,17 @@ This location will be used after OpenLP is closed. Welcome to the First Time Wizard - + Activate required Plugins - + Select the Plugins you wish to use. - + @@ -3321,7 +3320,7 @@ This location will be used after OpenLP is closed. Presentations - + @@ -3331,17 +3330,17 @@ This location will be used after OpenLP is closed. Allow remote access - + Monitor Song Usage - + Allow Alerts - + @@ -3351,17 +3350,17 @@ This location will be used after OpenLP is closed. Downloading %s... - + Enabling selected plugins... - + No Internet Connection - + @@ -3376,7 +3375,7 @@ This location will be used after OpenLP is closed. Select and download public domain songs. - + @@ -3396,42 +3395,42 @@ This location will be used after OpenLP is closed. Select and download sample themes. - + Set up default settings to be used by OpenLP. - + Default output display: - + Select default theme: - + Starting configuration process... - + Setting Up And Downloading - + Please wait while OpenLP is set up and your data is downloaded. - + Setting Up - + @@ -3448,7 +3447,7 @@ This location will be used after OpenLP is closed. No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + @@ -3458,69 +3457,69 @@ To re-run the First Time Wizard and import this sample data at a later time, che There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. - + Download complete. Click the %s button to return to OpenLP. - + Download complete. Click the %s button to start OpenLP. - + Click the %s button to return to OpenLP. - + Click the %s button to start OpenLP. - + There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. - + This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. - + To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. - + Downloading Resource Index - + Please wait while the resource index is downloaded. - + Please wait while OpenLP downloads the resource index file... - + Downloading and Configuring - + Please wait while resources are downloaded and OpenLP is configured. - + @@ -3530,7 +3529,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s There was a network error attempting to connect to retrieve initial configuration information - + @@ -3540,7 +3539,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Unable to download some files - + @@ -3548,7 +3547,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Configure Formatting Tags - + @@ -3573,12 +3572,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Default Formatting - + Custom Formatting - + @@ -3596,32 +3595,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Description is missing - + Tag is missing - + Tag %s already defined. - + Description %s already defined. - + Start tag %s is not valid HTML - + End tag %(end)s does not match end tag for start tag %(start)s - + @@ -3674,12 +3673,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Superscript - + Subscript - + @@ -3704,7 +3703,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Break - + @@ -3717,37 +3716,37 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Monitors - + Select monitor for output display: - + Display if a single screen - + Application Startup - + Show blank screen warning - + Automatically open the last service - + Show the splash screen - + @@ -3757,12 +3756,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Prompt to save before starting a new service - + Automatically preview next item in service - + @@ -3772,17 +3771,17 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s CCLI Details - + SongSelect username: - + SongSelect password: - + @@ -3807,17 +3806,17 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Check for updates to OpenLP - + Unblank display when adding new live item - + Timed slide interval: - + @@ -3827,42 +3826,42 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Start background audio paused - + Service Item Slide Limits - + Override display position: - + Repeat track list - + Behavior of next/previous on the last/first slide: - + &Remain on Slide - + &Wrap around - + &Move to next/previous service item - + @@ -3875,7 +3874,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Please restart OpenLP to use your new language setting. - + @@ -4238,7 +4237,7 @@ http://openlp.org/에서 최신 버전을 다운로드할 수 있습니다.Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. - + @@ -4338,7 +4337,7 @@ Re-running this wizard may make changes to your current OpenLP configuration and Jump to the search box of the current active plugin. - + @@ -4347,7 +4346,7 @@ Re-running this wizard may make changes to your current OpenLP configuration and Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + @@ -4391,47 +4390,47 @@ Processing has terminated and no changes have been made. &Recent Services - + &New Service - + &Open Service - + &Save Service - + Save Service &As... - + &Manage Plugins - + Exit OpenLP - + Are you sure you want to exit OpenLP? - + &Exit OpenLP - + @@ -4586,12 +4585,12 @@ Suffix not supported Player Search Order - + Visible background for videos with aspect ratio different to screen. - + @@ -4602,7 +4601,7 @@ Suffix not supported NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" - + @@ -4645,7 +4644,7 @@ Suffix not supported Manage Plugins - + @@ -5333,12 +5332,12 @@ Suffix not supported Delete projector (%s) %s? - + Are you sure you want to delete this projector? - + @@ -5529,7 +5528,7 @@ Suffix not supported &Add to Selected Item - + @@ -5539,37 +5538,37 @@ Suffix not supported &Reorder Item - + &Notes - + &Change Item Theme - + File is not a valid service. - + Missing Display Handler - + Your item cannot be displayed as there is no handler to display it - + Your item cannot be displayed as the plugin required to display it is missing or inactive - + @@ -5599,27 +5598,27 @@ Suffix not supported Moves the selection down the window. - + Move up - + Moves the selection up the window. - + Go Live - + Send the selected item to Live. - + @@ -5634,7 +5633,7 @@ Suffix not supported Modified Service - + @@ -5714,7 +5713,7 @@ Suffix not supported Service copy only - + @@ -5739,27 +5738,27 @@ Suffix not supported Create New &Custom Slide - + &Auto play slides - + Auto play slides &Loop - + Auto play slides &Once - + &Delay between slides - + @@ -5798,27 +5797,27 @@ OpenLP 2.0.2 혹은 이상의 버전으로 저장하세요. &Auto Start - inactive - + &Auto Start - active - + Input delay - + Delay between slides in seconds. - + Rename item title - + @@ -5828,14 +5827,14 @@ OpenLP 2.0.2 혹은 이상의 버전으로 저장하세요. An error occurred while writing the service file: %s - + The following file(s) in the service are missing: %s These files will be removed if you continue to save. - + @@ -5843,7 +5842,7 @@ These files will be removed if you continue to save. Service Item Notes - + @@ -5879,12 +5878,12 @@ These files will be removed if you continue to save. Alternate - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - + @@ -5894,12 +5893,12 @@ These files will be removed if you continue to save. Custom - + Capture shortcut. - + @@ -5962,42 +5961,42 @@ These files will be removed if you continue to save. Escape Item - + Move to previous. - + Move to next. - + Play Slides - + Delay between slides in seconds. - + Move to live. - + Add to Service. - + Edit and reload song preview. - + @@ -6007,7 +6006,7 @@ These files will be removed if you continue to save. Pause audio. - + @@ -6022,47 +6021,47 @@ These files will be removed if you continue to save. Video position. - + Audio Volume. - + Go to "Verse" - + Go to "Chorus" - + Go to "Bridge" - + Go to "Pre-Chorus" - + Go to "Intro" - + Go to "Ending" - + Go to "Other" - + @@ -6115,12 +6114,12 @@ These files will be removed if you continue to save. Delete all user-defined text and revert to PJLink default text - + Discard changes and reset to previous user-defined text - + @@ -6135,7 +6134,7 @@ These files will be removed if you continue to save. Are you sure you want to delete ALL user-defined source input text for this projector? - + @@ -6143,12 +6142,12 @@ These files will be removed if you continue to save. Spelling Suggestions - + Formatting Tags - + @@ -6161,17 +6160,17 @@ These files will be removed if you continue to save. Theme Layout - + The blue box shows the main area. - + The red box shows the footer. - + @@ -6179,7 +6178,7 @@ These files will be removed if you continue to save. Item Start and Finish Time - + @@ -6320,7 +6319,7 @@ These files will be removed if you continue to save. Save Theme - (%s) - + @@ -6431,19 +6430,19 @@ These files will be removed if you continue to save. %s time(s) by %s - + Unable to delete theme - + Theme is currently used %s - + @@ -6556,22 +6555,22 @@ These files will be removed if you continue to save. Footer Area Font Details - + Define the font and display characteristics for the Footer text - + Text Formatting Details - + Allows additional display formatting information to be defined - + @@ -6691,7 +6690,7 @@ These files will be removed if you continue to save. Transparent - + @@ -6736,22 +6735,22 @@ These files will be removed if you continue to save. Solid color - + color: - + Allows you to change and move the Main and Footer areas. - + You have not selected a background image. Please select one before continuing. - + @@ -6759,42 +6758,42 @@ These files will be removed if you continue to save. Global Theme - + Theme Level - + S&ong Level - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - + &Service Level - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - + &Global Level - + Use the global theme, overriding any themes associated with either the service or the songs. - + @@ -6919,7 +6918,7 @@ These files will be removed if you continue to save. - © + © Copyright symbol. © @@ -7060,7 +7059,7 @@ These files will be removed if you continue to save. Continuous - + @@ -7352,7 +7351,7 @@ Please try selecting it individually. s The abbreviated unit for seconds - + @@ -7398,12 +7397,12 @@ Please try selecting it individually. Optional &Split - + Split a slide into two only if it does not fit on the screen as one slide. - + @@ -7485,24 +7484,24 @@ Please try selecting it individually. OpenLP - + Replace live background is not available when the WebKit player is disabled. - + Songbook Singular - + Songbooks Plural - + @@ -7517,19 +7516,19 @@ Please try selecting it individually. %s, and %s Locale list separator: end - + %s, %s Locale list separator: middle - + %s, %s Locale list separator: start - + @@ -7537,7 +7536,7 @@ Please try selecting it individually. Source select dialog interface - + @@ -7545,50 +7544,50 @@ Please try selecting it individually. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - + Presentation name singular - + Presentations name plural - + Presentations container title - + Load a new presentation. - + Delete the selected presentation. - + Preview the selected presentation. - + Send the selected presentation live. - + Add the selected presentation to the service. - + @@ -7596,7 +7595,7 @@ Please try selecting it individually. Select Presentation(s) - + @@ -7606,42 +7605,42 @@ Please try selecting it individually. Present using: - + File Exists - + A presentation with that filename already exists. - + This type of presentation is not supported. - + Presentations (%s) - + Missing Presentation - + The presentation %s is incomplete, please reload. - + The presentation %s no longer exists. - + @@ -7649,7 +7648,7 @@ Please try selecting it individually. An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. - + @@ -7657,7 +7656,7 @@ Please try selecting it individually. Available Controllers - + @@ -7667,42 +7666,42 @@ Please try selecting it individually. Allow presentation application to be overridden - + PDF options - + Use given full path for mudraw or ghostscript binary: - + Select mudraw or ghostscript binary. - + The program is not ghostscript or mudraw which is required. - + PowerPoint options - + Clicking on a selected slide in the slidecontroller advances to next effect. - + Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). - + @@ -7710,35 +7709,35 @@ Please try selecting it individually. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - + Remote name singular - + Remotes name plural - + Remote container title - + Server Config Change - + Server configuration changes will require a restart to take effect. - + @@ -7751,7 +7750,7 @@ Please try selecting it individually. Slide Controller - + @@ -7766,17 +7765,17 @@ Please try selecting it individually. Home - + Refresh - + Blank - + @@ -7786,17 +7785,17 @@ Please try selecting it individually. Desktop - + Show - + Prev - + @@ -7806,32 +7805,32 @@ Please try selecting it individually. Text - + Show Alert - + Go Live - + Add to Service - + Add &amp; Go to Service - + No Results - + @@ -7846,7 +7845,7 @@ Please try selecting it individually. Slides - + @@ -7856,17 +7855,17 @@ Please try selecting it individually. Remote - + Stage View - + Live View - + @@ -7874,62 +7873,62 @@ Please try selecting it individually. Serve on IP address: - + Port number: - + Server Settings - + Remote URL: - + Stage view URL: - + Display stage time in 12h format - + Android App - + Live view URL: - + HTTPS Server - + Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. - + User Authentication - + User id: - + @@ -7939,12 +7938,12 @@ Please try selecting it individually. Show thumbnails of non-text slides in remote and stage view. - + Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. - + @@ -7952,85 +7951,85 @@ Please try selecting it individually. &Song Usage Tracking - + &Delete Tracking Data - + Delete song usage data up to a specified date. - + &Extract Tracking Data - + Generate a report on song usage. - + Toggle Tracking - + Toggle the tracking of song usage. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - + SongUsage name singular - + SongUsage name plural - + SongUsage container title - + Song Usage - + Song usage tracking is active. - + Song usage tracking is inactive. - + display - + printed - + @@ -8038,33 +8037,33 @@ Please try selecting it individually. Delete Song Usage Data - + Delete Selected Song Usage Events? - + Are you sure you want to delete selected Song Usage data? - + Deletion Successful - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + All requested data has been deleted successfully. - + @@ -8072,12 +8071,12 @@ All data recorded before this date will be permanently deleted. Song Usage Extraction - + Select Date Range - + @@ -8087,50 +8086,50 @@ All data recorded before this date will be permanently deleted. Report Location - + Output File Location - + usage_detail_%s_%s.txt - + Report Creation - + Report %s has been successfully created. - + Output Path Not Selected - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + Report Creation Failed - + An error occurred while creating the report: %s - + @@ -8138,126 +8137,126 @@ Please select an existing path on your computer. &Song - + Import songs using the import wizard. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. - + &Re-index Songs - + Re-index the songs database to improve searching and ordering. - + Reindexing songs... - + Arabic (CP-1256) - + Baltic (CP-1257) - + Central European (CP-1250) - + Cyrillic (CP-1251) - + Greek (CP-1253) - + Hebrew (CP-1255) - + Japanese (CP-932) - + Korean (CP-949) - + Simplified Chinese (CP-936) - + Thai (CP-874) - + Traditional Chinese (CP-950) - + Turkish (CP-1254) - + Vietnam (CP-1258) - + Western European (CP-1252) - + Character Encoding - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. - + Please choose the character encoding. The encoding is responsible for the correct character representation. - + Song name singular - + @@ -8274,7 +8273,7 @@ The encoding is responsible for the correct character representation. Exports songs using the export wizard. - + @@ -8314,12 +8313,12 @@ The encoding is responsible for the correct character representation. CCLI SongSelect - + Import songs from CCLI's SongSelect service. - + @@ -8344,13 +8343,13 @@ The encoding is responsible for the correct character representation. Music Author who wrote the music of a song - + Words and Music Author who wrote both lyrics and music of a song - + @@ -8439,7 +8438,7 @@ The encoding is responsible for the correct character representation. [above are Song Tags with notes imported from EasyWorship] - + @@ -8449,17 +8448,17 @@ The encoding is responsible for the correct character representation. Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. - + This file is not a valid EasyWorship database. - + Could not retrieve encoding. - + @@ -8535,7 +8534,7 @@ The encoding is responsible for the correct character representation. New &Theme - + @@ -8550,72 +8549,72 @@ The encoding is responsible for the correct character representation. Theme, Copyright Info && Comments - + Add Author - + This author does not exist, do you want to add them? - + This author is already in the list. - + 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? - + This topic is already in the list. - + 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. - + You need to type in a song title. - + You need to type in at least one verse. - + You need to have an author for this song. - + Linked Audio - + Add &File(s) - + @@ -8625,94 +8624,94 @@ The encoding is responsible for the correct character representation. Remove &All - + Open File(s) - + <strong>Warning:</strong> Not all of the verses are in use. - + <strong>Warning:</strong> You have not entered a verse order. - + There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. - + Invalid Verse Order - + &Edit Author Type - + Edit Author Type - + Choose type for this author - + There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. - + &Manage Authors, Topics, Songbooks - + Add &to Song - + Re&move - + Authors, Topics && Songbooks - + Add Songbook - + This Songbook does not exist, do you want to add it? - + This Songbook is already in the list. - + You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + @@ -8720,22 +8719,22 @@ Please enter the verses separated by spaces. Edit Verse - + &Verse type: - + &Insert - + Split a slide into two by inserting a verse splitter. - + @@ -8743,82 +8742,82 @@ Please enter the verses separated by spaces. Song Export Wizard - + Select Songs - + Check the songs you want to export. - + Uncheck All - + Check All - + Select Directory - + Directory: - + Exporting - + Please wait while your songs are exported. - + You need to add at least one Song to export. - + No Save Location specified - + Starting export... - + You need to specify a directory. - + Select Destination Folder - + Select the directory where you want the songs to be saved. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. - + @@ -8826,7 +8825,7 @@ Please enter the verses separated by spaces. Invalid Foilpresenter song file. No verses found. - + @@ -8834,7 +8833,7 @@ Please enter the verses separated by spaces. Enable search as you type - + @@ -8842,22 +8841,22 @@ Please enter the verses separated by spaces. Select Document/Presentation Files - + 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. - + Generic Document/Presentation - + @@ -8877,27 +8876,27 @@ Please enter the verses separated by spaces. Words Of Worship Song Files - + Songs Of Fellowship Song Files - + SongBeamer Files - + SongShow Plus Song Files - + Foilpresenter Song Files - + @@ -8912,167 +8911,167 @@ Please enter the verses separated by spaces. The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics Files - + CCLI SongSelect Files - + EasySlides XML File - + EasyWorship Song Database - + DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files - + This importer has been disabled. - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu - + EasyWorship Service File - + WorshipCenter Pro Song Files - + The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + PowerPraise Song Files - + PresentationManager Song Files - + ProPresenter 4 Song Files - + Worship Assistant Files - + Worship Assistant (CSV) - + In Worship Assistant, export your Database to a CSV file. - + OpenLyrics or OpenLP 2 Exported Song - + OpenLP 2 Databases - + LyriX Files - + LyriX (Exported TXT-files) - + VideoPsalm Files - + VideoPsalm - + The VideoPsalm songbooks are normally located in %s - + @@ -9080,7 +9079,7 @@ Please enter the verses separated by spaces. Error: %s - + 오류: %s @@ -9093,7 +9092,7 @@ Please enter the verses separated by spaces. Select one or more audio files from the list below, and click OK to import them into this song. - + @@ -9101,7 +9100,7 @@ Please enter the verses separated by spaces. Titles - + @@ -9111,17 +9110,17 @@ Please enter the verses separated by spaces. CCLI License: - + Entire Song - + Maintain the lists of authors, topics and books. - + @@ -9132,12 +9131,12 @@ Please enter the verses separated by spaces. Search Titles... - + Search Entire Song... - + @@ -9147,17 +9146,17 @@ Please enter the verses separated by spaces. Search Authors... - + Are you sure you want to delete the "%d" selected song(s)? - + Search Songbooks... - + @@ -9165,7 +9164,7 @@ Please enter the verses separated by spaces. Unable to open the MediaShout database. - + @@ -9173,7 +9172,7 @@ Please enter the verses separated by spaces. Not a valid OpenLP 2 song database. - + @@ -9181,7 +9180,7 @@ Please enter the verses separated by spaces. Exporting "%s"... - + @@ -9189,7 +9188,7 @@ Please enter the verses separated by spaces. Invalid OpenSong song file. Missing song tag. - + @@ -9197,32 +9196,32 @@ Please enter the verses separated by spaces. No songs to import. - + Verses not found. Missing "PART" header. - + No %s files found. - + Invalid %s file. Unexpected byte value. - + Invalid %s file. Missing "TITLE" header. - + Invalid %s file. Missing "COPYRIGHTLINE" header. - + @@ -9230,22 +9229,22 @@ Please enter the verses separated by spaces. &Name: - + &Publisher: - + You need to type in a name for the book. - + Songbook Maintenance - + @@ -9258,12 +9257,12 @@ Please enter the verses separated by spaces. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. - + Your song export failed because this error occurred: %s - + @@ -9271,27 +9270,27 @@ Please enter the verses separated by spaces. copyright - + The following songs could not be imported: - + Cannot access OpenOffice or LibreOffice - + Unable to open file - + File not found - + @@ -9299,107 +9298,107 @@ Please enter the verses separated by spaces. Could not add your author. - + This author already exists. - + Could not add your topic. - + This topic already exists. - + Could not add your book. - + This book already exists. - + Could not save your changes. - + Could not save your modified author, because the author already exists. - + Could not save your modified topic, because it already exists. - + Delete Author - + Are you sure you want to delete the selected author? - + This author cannot be deleted, they are currently assigned to at least one song. - + Delete Topic - + Are you sure you want to delete the selected topic? - + This topic cannot be deleted, it is currently assigned to at least one song. - + Delete Book - + 선경 삭제하기 Are you sure you want to delete the selected book? - + This book cannot be deleted, it is currently assigned to at least one song. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? - + @@ -9407,12 +9406,12 @@ Please enter the verses separated by spaces. CCLI SongSelect Importer - + <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. - + @@ -9427,17 +9426,17 @@ Please enter the verses separated by spaces. Save username and password - + 아이디 및 비밀번호 저장하기 Login - + 로그인 Search Text: - + 문구 검색: @@ -9447,12 +9446,12 @@ Please enter the verses separated by spaces. Found %s song(s) - + %s곡 찾았습니다. Logout - + 로그아웃 @@ -9467,7 +9466,7 @@ Please enter the verses separated by spaces. Author(s): - + 작곡자: @@ -9477,17 +9476,17 @@ Please enter the verses separated by spaces. CCLI Number: - + CCLI 번호 Lyrics: - + 가사: Back - + 뒤로 @@ -9497,17 +9496,17 @@ Please enter the verses separated by spaces. More than 1000 results - + Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. - + Logging out... - + @@ -9522,7 +9521,7 @@ Please enter the verses separated by spaces. Error Logging In - + @@ -9532,27 +9531,27 @@ Please enter the verses separated by spaces. Song Imported - + Incomplete song - + This song is missing some information, like the lyrics, and cannot be imported. - + Your song has been imported, would you like to import more songs? - + Stop - + 멈추기 @@ -9560,32 +9559,32 @@ Please enter the verses separated by spaces. Songs Mode - + Display verses on live tool bar - + Update service from song edit - + Import missing songs from service files - + Display songbook in footer - + Display "%s" symbol before copyright info - + @@ -9593,17 +9592,17 @@ Please enter the verses separated by spaces. Topic Maintenance - + Topic name: - + You need to type in a topic name. - + @@ -9611,32 +9610,32 @@ Please enter the verses separated by spaces. Verse - + Chorus - + 후렴 Bridge - + 브리지 Pre-Chorus - + Pre-전주 Intro - + 전주 Ending - + 아웃트로 @@ -9649,7 +9648,7 @@ Please enter the verses separated by spaces. Error: %s - + 오류: %s @@ -9657,12 +9656,12 @@ Please enter the verses separated by spaces. Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words - + Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock - + @@ -9670,27 +9669,27 @@ Please enter the verses separated by spaces. Error reading CSV file. - + Line %d: %s - + Decoding error: %s - + File not valid WorshipAssistant CSV format. - + Record %d - + @@ -9698,7 +9697,7 @@ Please enter the verses separated by spaces. Unable to connect the WorshipCenter Pro database. - + @@ -9706,27 +9705,27 @@ Please enter the verses separated by spaces. Error reading CSV file. - + File not valid ZionWorx CSV format. - + Line %d: %s - + Decoding error: %s - + Record %d - + @@ -9734,32 +9733,32 @@ Please enter the verses separated by spaces. Wizard - + This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. - + Searching for duplicate songs. - + Please wait while your songs database is analyzed. - + Here you can decide which songs to remove and which ones to keep. - + Review duplicate songs (%s/%s) - + @@ -9769,7 +9768,7 @@ Please enter the verses separated by spaces. No duplicate songs have been found in the database. - + - + \ No newline at end of file diff --git a/resources/i18n/lt.ts b/resources/i18n/lt.ts index 2388c60ca..f0ab69f80 100644 --- a/resources/i18n/lt.ts +++ b/resources/i18n/lt.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -97,14 +96,14 @@ Ar vistiek norite tęsti? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Įspėjimo tekste nėra '<>'. Ar vistiek norite tęsti? - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. Savo įspėjamajam pranešimui nenurodėte jokio teksto. Prašome prieš spustelėjant Naujas, įrašyti tekstą. @@ -1599,7 +1598,7 @@ Atlikta Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + @@ -1778,7 +1777,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the "%d" selected custom slide(s)? - + @@ -2004,7 +2003,7 @@ Ar vistiek norite pridėti kitus paveikslus? This media player uses your operating system to provide media capabilities. - + @@ -2462,7 +2461,7 @@ OpenLP yra savanorių sukurta ir palaikoma programa. Jeigu jūs norėtumėte mat Afrikaans (af) - + @@ -2522,7 +2521,7 @@ OpenLP yra savanorių sukurta ir palaikoma programa. Jeigu jūs norėtumėte mat Indonesian (id) - + @@ -2531,7 +2530,7 @@ OpenLP yra savanorių sukurta ir palaikoma programa. Jeigu jūs norėtumėte mat - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) Norvegų Bokmål (nb) @@ -2562,7 +2561,7 @@ OpenLP yra savanorių sukurta ir palaikoma programa. Jeigu jūs norėtumėte mat Tamil(Sri-Lanka) (ta_LK) - + @@ -2604,12 +2603,12 @@ OpenLP yra savanorių sukurta ir palaikoma programa. Jeigu jūs norėtumėte mat on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - + - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s Autorių Teisės © 2004-2016 %s Autorių Teisių dalys © 2004-2016 %s @@ -2937,7 +2936,7 @@ yra OpenLP duomenų failai. Ar norėtumėte pakeisti tuos failus esamais duomen Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + @@ -3641,7 +3640,7 @@ Kad visiškai atšauktumėte Pirmojo Karto Vedlį (ir nepaleistumėte OpenLP), s End tag %(end)s does not match end tag for start tag %(start)s - + @@ -4417,27 +4416,27 @@ Apdorojimas buvo nutrauktas ir nepadaryta jokių pokyčių. &Recent Services - + &New Service - + &Open Service - + &Save Service - + Save Service &As... - + @@ -6459,12 +6458,12 @@ Jei tęsite išsaugojimą, šie failai bus pašalinti. %s time(s) by %s - + Unable to delete theme - + Nepavyko ištrinti temos @@ -6949,7 +6948,7 @@ Jei tęsite išsaugojimą, šie failai bus pašalinti. - © + © Copyright symbol. © @@ -7520,19 +7519,19 @@ Prašome jūsų pasirinkti jį patiems. Replace live background is not available when the WebKit player is disabled. - + Songbook Singular - + Songbooks Plural - + @@ -8711,47 +8710,47 @@ Prašome įvesti tarpais atskirtus posmelius. There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. - + &Manage Authors, Topics, Songbooks - + &Tvarkyti Autorius, Temas, Giesmynus Add &to Song - + Re&move - + Authors, Topics && Songbooks - + Add Songbook - + This Songbook does not exist, do you want to add it? - + Tokio giesmyno nėra, ar norite jį pridėti? This Songbook is already in the list. - + Šis giesmynas jau yra sąraše. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + @@ -9081,7 +9080,7 @@ Please enter the verses separated by spaces. OpenLyrics or OpenLP 2 Exported Song - + @@ -9191,12 +9190,12 @@ Please enter the verses separated by spaces. Are you sure you want to delete the "%d" selected song(s)? - + Search Songbooks... - + @@ -9284,7 +9283,7 @@ Please enter the verses separated by spaces. Songbook Maintenance - + @@ -9591,7 +9590,7 @@ Please enter the verses separated by spaces. Stop - + @@ -9696,12 +9695,12 @@ Please enter the verses separated by spaces. Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words - + Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock - + @@ -9811,4 +9810,4 @@ Please enter the verses separated by spaces. Duomenų bazėje nerasta giesmių dublikatų. - + \ No newline at end of file diff --git a/resources/i18n/nb.ts b/resources/i18n/nb.ts index a89efe568..624c1105f 100644 --- a/resources/i18n/nb.ts +++ b/resources/i18n/nb.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -97,14 +96,14 @@ Vil du fortsette? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Meldingsteksten inneholder ikke '<>'. Vil du fortsette likevel? - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. Du har ikke spesifisert noen tekst for meldingen. Vennligst skriv inn tekst før du klikker Ny. @@ -2531,7 +2530,7 @@ OpenLP er skrevet og vedlikeholdt av frivillige. Hvis du ønsker at det blir skr - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) Norsk bokmål (nb) @@ -2618,8 +2617,8 @@ OpenLP er skrevet og vedlikeholdt av frivillige. Hvis du ønsker at det blir skr - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s Copyright © 2004-2016 %s Delvis copyright © 2004-2016 %s @@ -6961,7 +6960,7 @@ Disse filene vil bli fjernet hvis du fortsetter til lagre. - © + © Copyright symbol. © @@ -7532,19 +7531,19 @@ Vennligst prøv å velge den individuelt. Replace live background is not available when the WebKit player is disabled. - + En kan ikke bytte fremvist bakgrunnsbilde når WebKit spilleren er deaktivert. Songbook Singular - + Sangbok Songbooks Plural - + Sangbøker @@ -8564,7 +8563,7 @@ Innstillingen er avgjørende for riktige tegn. &Add to Song - &Tilføye sangen + &Tilføye sang @@ -8728,42 +8727,42 @@ Fyll inn versene adskilt med mellomrom. &Manage Authors, Topics, Songbooks - + &Behandle forfattere, emner og sangbøker Add &to Song - + &Tilføye sang Re&move - + &Fjern Authors, Topics && Songbooks - + Forfattere, emner && sangbøker Add Songbook - + Legg til sangbok This Songbook does not exist, do you want to add it? - + Denne sangboken eksisterer ikke, skal den opprettes? This Songbook is already in the list. - + Denne sangboken finnes allerede i listen. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + Du har ikke valgt en gyldig sangbok. Du kan enten velge en sangbok fra listen, eller lag en ny sangbok og klikk på "Tilføye sang" knappen for å legge til den nye sangboken. @@ -9208,7 +9207,7 @@ Fyll inn versene adskilt med mellomrom. Search Songbooks... - + Søk i sangbøker @@ -9296,7 +9295,7 @@ Fyll inn versene adskilt med mellomrom. Songbook Maintenance - + Vedlikehold av sangbøker @@ -9603,7 +9602,7 @@ Fyll inn versene adskilt med mellomrom. Stop - + Stopp @@ -9823,4 +9822,4 @@ Fyll inn versene adskilt med mellomrom. Ingen sangduplikater er blitt funnet i databasen. - + \ No newline at end of file diff --git a/resources/i18n/nl.ts b/resources/i18n/nl.ts index e865400e8..5efb20cd7 100644 --- a/resources/i18n/nl.ts +++ b/resources/i18n/nl.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -97,14 +96,14 @@ Toch doorgaan? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? De waarschuwingstekst bevat geen '<>'. Wilt u toch doorgaan? - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. De waarschuwingstekst is leeg. Voer eerst tekst in voordat u op Nieuw klikt. @@ -2533,7 +2532,7 @@ OpenLP wordt gemaakt en onderhouden door vrijwilligers. Als je meer gratis Chris - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) Noors, Bokmål (nb) @@ -2613,8 +2612,8 @@ Tenslotte gaat onze laatste dankbetuiging naar God onze Vader, omdat hij Zijn Zo - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s Copyright © 2004-2016 %s Gedeelten copyright © 2004-2016 %s @@ -6957,7 +6956,7 @@ Deze bestanden worden verwijderd als u doorgaat met opslaan. - © + © Copyright symbol. © @@ -7528,19 +7527,19 @@ Probeer elk bestand individueel te selecteren. Replace live background is not available when the WebKit player is disabled. - + Vervang live achtergrond is niet beschikbaar wanneer de WebKit-speler uitgeschakeld is. Songbook Singular - + Liedboek Songbooks Plural - + Liedboeken @@ -8724,42 +8723,42 @@ Geef de verzen op gescheiden door spaties. &Manage Authors, Topics, Songbooks - + &Beheer auteurs, onderwerpen, liedboeken Add &to Song - + Voeg toe &aan lied Re&move - + Ver&wijderen Authors, Topics && Songbooks - + Auteurs, onderwerpen && liedboeken Add Songbook - + Voeg liedboek toe This Songbook does not exist, do you want to add it? - + Dit liedboek bestaat nog niet, toevoegen? This Songbook is already in the list. - + Dit liedboek staat al in de lijst. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + Geen geldig liedboek geselecteerd. Kies een liedboek uit de lijst of type de naam van een liedboek en klik op "Nieuw liedboek toevoegen". @@ -9204,7 +9203,7 @@ Geef de verzen op gescheiden door spaties. Search Songbooks... - + Zoek liedboek... @@ -9292,7 +9291,7 @@ Geef de verzen op gescheiden door spaties. Songbook Maintenance - + Liedboekbeheer @@ -9599,7 +9598,7 @@ Geef de verzen op gescheiden door spaties. Stop - + Stop @@ -9819,4 +9818,4 @@ Geef de verzen op gescheiden door spaties. Er zijn geen dubbele liederen gevonden in de database. - + \ No newline at end of file diff --git a/resources/i18n/pl.ts b/resources/i18n/pl.ts index 64efb4b71..d4bc7fdee 100644 --- a/resources/i18n/pl.ts +++ b/resources/i18n/pl.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -96,13 +95,13 @@ Do you want to continue anyway? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Tekst ostrzegawczy nie zawiera '<>'. Czy mimo to chcesz kontynuować? - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. Nie zdeklarowałeś treści komunikatu. Proszę, wpisz test zanim wciśniesz "Nowy". @@ -1593,7 +1592,7 @@ Complete Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + @@ -1773,7 +1772,7 @@ Wtyczka Slajdu Tekstowego umożliwia umieszczanie zwykłych ciągów znaków na Are you sure you want to delete the "%d" selected custom slide(s)? - + @@ -1999,7 +1998,7 @@ Czy mimo to chcesz dodać inne? This media player uses your operating system to provide media capabilities. - + @@ -2427,147 +2426,147 @@ OpenLP jest pisany i wspierany przez wolontariuszy. Jeśli chciałbyś, aby pows Project Lead - + Developers - + Contributors - + Packagers - + Testers - + Translators - + Afrikaans (af) - + Czech (cs) - + Danish (da) - + German (de) - + Greek (el) - + English, United Kingdom (en_GB) - + English, South Africa (en_ZA) - + Spanish (es) - + Estonian (et) - + Finnish (fi) - + French (fr) - + Hungarian (hu) - + Indonesian (id) - + Japanese (ja) - + - Norwegian Bokmål (nb) - + Norwegian Bokmål (nb) + Dutch (nl) - + Polish (pl) - + Portuguese, Brazil (pt_BR) - + Russian (ru) - + Swedish (sv) - + Tamil(Sri-Lanka) (ta_LK) - + Chinese(China) (zh_CN) - + Documentation - + @@ -2578,7 +2577,7 @@ OpenLP jest pisany i wspierany przez wolontariuszy. Jeśli chciałbyś, aby pows Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ - + @@ -2593,13 +2592,13 @@ OpenLP jest pisany i wspierany przez wolontariuszy. Jeśli chciałbyś, aby pows on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - + - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s - + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s + @@ -2958,7 +2957,7 @@ Katalog z danymi zostanie przywrucony jak OpenLP zostanie zamknięty. Storage - + @@ -3103,47 +3102,47 @@ Katalog z danymi zostanie przywrucony jak OpenLP zostanie zamknięty. Storage 1 - + Storage 2 - + Storage 3 - + Storage 4 - + Storage 5 - + Storage 6 - + Storage 7 - + Storage 8 - + Storage 9 - + @@ -3222,12 +3221,12 @@ Katalog z danymi zostanie przywrucony jak OpenLP zostanie zamknięty. Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. - + @@ -3630,7 +3629,7 @@ By anulować kreatora pierwszego uruchomienia całkowicie (i nie uruchamiać Ope End tag %(end)s does not match end tag for start tag %(start)s - + @@ -4353,7 +4352,7 @@ Uruchamianie go ponownie może spowodować zmiany w obecnej konfiguracji OpenLP, Jump to the search box of the current active plugin. - + @@ -4410,47 +4409,47 @@ Proces został zatrzymany i nie wykonano żadnych zmian. &Recent Services - + &New Service - + &Open Service - + &Save Service - + Save Service &As... - + &Manage Plugins - + Exit OpenLP - + Are you sure you want to exit OpenLP? - + &Exit OpenLP - + @@ -4621,7 +4620,7 @@ Nieobsługiwany przyrostek. NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" - + @@ -4664,7 +4663,7 @@ Nieobsługiwany przyrostek. Manage Plugins - + @@ -4983,7 +4982,7 @@ Nieobsługiwany przyrostek. Warmup in progress - + @@ -5292,7 +5291,7 @@ Nieobsługiwany przyrostek. Shutter is - + @@ -5352,12 +5351,12 @@ Nieobsługiwany przyrostek. Delete projector (%s) %s? - + Are you sure you want to delete this projector? - + @@ -5380,7 +5379,7 @@ Nieobsługiwany przyrostek. Cover - + @@ -6156,7 +6155,7 @@ Zostaną one usunięte, jeśli będziesz kontynuował/ Are you sure you want to delete ALL user-defined source input text for this projector? - + @@ -6452,19 +6451,19 @@ Zostaną one usunięte, jeśli będziesz kontynuował/ %s time(s) by %s - + Unable to delete theme - + Theme is currently used %s - + @@ -6940,7 +6939,7 @@ Zostaną one usunięte, jeśli będziesz kontynuował/ - © + © Copyright symbol. © @@ -7511,19 +7510,19 @@ Proszę zaznaczyć go ręcznie. Replace live background is not available when the WebKit player is disabled. - + Songbook Singular - + Songbooks Plural - + @@ -8703,47 +8702,47 @@ Proszę, wpisz zwrotki oddzielając je spacją. There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. - + &Manage Authors, Topics, Songbooks - + Add &to Song - + Re&move - + Authors, Topics && Songbooks - + Add Songbook - + This Songbook does not exist, do you want to add it? - + This Songbook is already in the list. - + You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + @@ -9073,37 +9072,37 @@ Please enter the verses separated by spaces. OpenLyrics or OpenLP 2 Exported Song - + OpenLP 2 Databases - + LyriX Files - + LyriX (Exported TXT-files) - + VideoPsalm Files - + VideoPsalm - + The VideoPsalm songbooks are normally located in %s - + @@ -9111,7 +9110,7 @@ Please enter the verses separated by spaces. Error: %s - + @@ -9183,12 +9182,12 @@ Please enter the verses separated by spaces. Are you sure you want to delete the "%d" selected song(s)? - + Search Songbooks... - + @@ -9204,7 +9203,7 @@ Please enter the verses separated by spaces. Not a valid OpenLP 2 song database. - + @@ -9276,7 +9275,7 @@ Please enter the verses separated by spaces. Songbook Maintenance - + @@ -9584,7 +9583,7 @@ Zapisywanie nazwy użytkownika i hasła jest NIEBEZPIECZNE, twoje hasło jest za Stop - + @@ -9681,7 +9680,7 @@ Zapisywanie nazwy użytkownika i hasła jest NIEBEZPIECZNE, twoje hasło jest za Error: %s - + @@ -9689,12 +9688,12 @@ Zapisywanie nazwy użytkownika i hasła jest NIEBEZPIECZNE, twoje hasło jest za Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words - + Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock - + @@ -9804,4 +9803,4 @@ Zapisywanie nazwy użytkownika i hasła jest NIEBEZPIECZNE, twoje hasło jest za Nie znaleziono żadnych powtarzających się pieśni w bazie. - + \ No newline at end of file diff --git a/resources/i18n/pt_BR.ts b/resources/i18n/pt_BR.ts index 251a06b1b..e0740093f 100644 --- a/resources/i18n/pt_BR.ts +++ b/resources/i18n/pt_BR.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -97,14 +96,14 @@ Deseja continuar mesmo assim? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? O texto de alerta não contém '<>'. Deseja continuar mesmo assim? - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. Você não especificou nenhum texto para a alerta. Por favor, digite algum texto antes de clicar em Novo. @@ -1953,7 +1952,7 @@ Deseja continuar adicionando as outras imagens mesmo assim? -- Top-level group -- - + @@ -2531,7 +2530,7 @@ O OpenLP é escrito e mantido por voluntários. Se você gostaria de ver mais so - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) Norwegian Bokmål (nb) @@ -2618,8 +2617,8 @@ Ele nos libertou. - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s Direitos autorais © 2004-2016 %s Porções com direitos autorais © 2004-2016 %s @@ -4850,12 +4849,12 @@ Sufixo não suportado Warning condition detected - + Error condition detected - + @@ -4930,32 +4929,32 @@ Sufixo não suportado The SSL/TLS handshake failed - + The last operation attempted has not finished yet (still in progress in the background) - + Could not contact the proxy server because the connection to that server was denied - + The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) - + The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. - + The proxy address set with setProxy() was not found - + @@ -5234,12 +5233,12 @@ Sufixo não suportado Select &Input - + Edit Input Source - + @@ -5309,7 +5308,7 @@ Sufixo não suportado Shutter is - + @@ -5319,7 +5318,7 @@ Sufixo não suportado Current source input is - + @@ -5382,7 +5381,7 @@ Sufixo não suportado Fan - + @@ -5397,7 +5396,7 @@ Sufixo não suportado Cover - + @@ -5435,17 +5434,17 @@ Sufixo não suportado Poll time (seconds) - + Tabbed dialog box - + Single dialog box - + @@ -5770,79 +5769,79 @@ Sufixo não suportado &Rename... - + Create New &Custom Slide - + &Auto play slides - + Auto play slides &Loop - + Auto play slides &Once - + &Delay between slides - + OpenLP Service Files (*.osz *.oszl) - + OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) - + OpenLP Service Files (*.osz);; - + File is not a valid service. The content encoding is not UTF-8. - + The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. - + This file is either corrupt or it is not an OpenLP 2 service file. - + &Auto Start - inactive - + &Auto Start - active - + Input delay - + @@ -5852,7 +5851,7 @@ Sufixo não suportado Rename item title - + @@ -5862,14 +5861,14 @@ Sufixo não suportado An error occurred while writing the service file: %s - + The following file(s) in the service are missing: %s These files will be removed if you continue to save. - + @@ -6145,22 +6144,22 @@ These files will be removed if you continue to save. Ignoring current changes and return to OpenLP - + Delete all user-defined text and revert to PJLink default text - + Discard changes and reset to previous user-defined text - + Save changes and return to OpenLP - + @@ -6456,29 +6455,29 @@ These files will be removed if you continue to save. The theme export failed because this error occurred: %s - + OpenLP Themes (*.otz) - + %s time(s) by %s - + Unable to delete theme - + Theme is currently used %s - + @@ -6771,17 +6770,17 @@ These files will be removed if you continue to save. Solid color - + color: - + Allows you to change and move the Main and Footer areas. - + @@ -6839,12 +6838,12 @@ These files will be removed if you continue to save. Universal Settings - + &Wrap footer text - + @@ -6954,7 +6953,7 @@ These files will be removed if you continue to save. - © + © Copyright symbol. © @@ -7525,19 +7524,19 @@ Por favor, tente selecionar individualmente. Replace live background is not available when the WebKit player is disabled. - + Songbook Singular - + Songbooks Plural - + @@ -7546,25 +7545,25 @@ Por favor, tente selecionar individualmente. %s and %s Locale list separator: 2 items - + %s, and %s Locale list separator: end - + %s, %s Locale list separator: middle - + %s, %s Locale list separator: start - + @@ -7572,7 +7571,7 @@ Por favor, tente selecionar individualmente. Source select dialog interface - + @@ -7684,7 +7683,7 @@ Por favor, tente selecionar individualmente. An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. - + @@ -7712,32 +7711,32 @@ Por favor, tente selecionar individualmente. Use given full path for mudraw or ghostscript binary: - + Select mudraw or ghostscript binary. - + The program is not ghostscript or mudraw which is required. - + PowerPoint options - + Clicking on a selected slide in the slidecontroller advances to next effect. - + Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). - + @@ -7768,12 +7767,12 @@ Por favor, tente selecionar individualmente. Server Config Change - + Server configuration changes will require a restart to take effect. - + @@ -7944,27 +7943,27 @@ Por favor, tente selecionar individualmente. Live view URL: - + HTTPS Server - + Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. - + User Authentication - + User id: - + @@ -7974,12 +7973,12 @@ Por favor, tente selecionar individualmente. Show thumbnails of non-text slides in remote and stage view. - + Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. - + @@ -8094,12 +8093,12 @@ Por favor, tente selecionar individualmente. Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + All requested data has been deleted successfully. - + @@ -8157,17 +8156,17 @@ foi criado com sucesso. You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + Report Creation Failed - + An error occurred while creating the report: %s - + @@ -8354,12 +8353,12 @@ A codificação é responsável pela correta representação dos caracteres. CCLI SongSelect - + Import songs from CCLI's SongSelect service. - + @@ -8450,7 +8449,7 @@ A codificação é responsável pela correta representação dos caracteres. Invalid DreamBeam song file. Missing DreamSong tag. - + @@ -8463,43 +8462,43 @@ A codificação é responsável pela correta representação dos caracteres. "%s" could not be imported. %s - + Unexpected data formatting. - + No song text found. - + [above are Song Tags with notes imported from EasyWorship] - + This file does not exist. - + Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. - + This file is not a valid EasyWorship database. - + Could not retrieve encoding. - + @@ -8686,12 +8685,12 @@ A codificação é responsável pela correta representação dos caracteres. There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. - + Invalid Verse Order - + @@ -8712,47 +8711,47 @@ Please enter the verses separated by spaces. There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. - + &Manage Authors, Topics, Songbooks - + Add &to Song - + Re&move - + Authors, Topics && Songbooks - + Add Songbook - + This Songbook does not exist, do you want to add it? - + This Songbook is already in the list. - + You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + @@ -8858,7 +8857,7 @@ Please enter the verses separated by spaces. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. - + @@ -9037,82 +9036,82 @@ Please enter the verses separated by spaces. EasyWorship Service File - + WorshipCenter Pro Song Files - + The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + PowerPraise Song Files - + PresentationManager Song Files - + ProPresenter 4 Song Files - + Worship Assistant Files - + Worship Assistant (CSV) - + In Worship Assistant, export your Database to a CSV file. - + OpenLyrics or OpenLP 2 Exported Song - + OpenLP 2 Databases - + LyriX Files - + LyriX (Exported TXT-files) - + VideoPsalm Files - + VideoPsalm - + The VideoPsalm songbooks are normally located in %s - + @@ -9120,7 +9119,7 @@ Please enter the verses separated by spaces. Error: %s - + @@ -9192,12 +9191,12 @@ Please enter the verses separated by spaces. Are you sure you want to delete the "%d" selected song(s)? - + Search Songbooks... - + @@ -9213,7 +9212,7 @@ Please enter the verses separated by spaces. Not a valid OpenLP 2 song database. - + @@ -9229,7 +9228,7 @@ Please enter the verses separated by spaces. Invalid OpenSong song file. Missing song tag. - + @@ -9285,7 +9284,7 @@ Please enter the verses separated by spaces. Songbook Maintenance - + @@ -9303,7 +9302,7 @@ Please enter the verses separated by spaces. Your song export failed because this error occurred: %s - + @@ -9447,12 +9446,12 @@ Please enter the verses separated by spaces. CCLI SongSelect Importer - + <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. - + @@ -9467,17 +9466,17 @@ Please enter the verses separated by spaces. Save username and password - + Login - + Search Text: - + @@ -9487,12 +9486,12 @@ Please enter the verses separated by spaces. Found %s song(s) - + Logout - + @@ -9517,12 +9516,12 @@ Please enter the verses separated by spaces. CCLI Number: - + Lyrics: - + @@ -9537,62 +9536,62 @@ Please enter the verses separated by spaces. More than 1000 results - + Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. - + Logging out... - + Save Username and Password - + WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. - + Error Logging In - + There was a problem logging in, perhaps your username or password is incorrect? - + Song Imported - + Incomplete song - + This song is missing some information, like the lyrics, and cannot be imported. - + Your song has been imported, would you like to import more songs? - + Stop - + @@ -9620,12 +9619,12 @@ Please enter the verses separated by spaces. Display songbook in footer - + Display "%s" symbol before copyright info - + @@ -9689,7 +9688,7 @@ Please enter the verses separated by spaces. Error: %s - + @@ -9697,12 +9696,12 @@ Please enter the verses separated by spaces. Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words - + Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock - + @@ -9725,7 +9724,7 @@ Please enter the verses separated by spaces. File not valid WorshipAssistant CSV format. - + @@ -9738,7 +9737,7 @@ Please enter the verses separated by spaces. Unable to connect the WorshipCenter Pro database. - + @@ -9774,32 +9773,32 @@ Please enter the verses separated by spaces. Wizard - + This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. - + Searching for duplicate songs. - + Please wait while your songs database is analyzed. - + Here you can decide which songs to remove and which ones to keep. - + Review duplicate songs (%s/%s) - + @@ -9809,7 +9808,7 @@ Please enter the verses separated by spaces. No duplicate songs have been found in the database. - + - + \ No newline at end of file diff --git a/resources/i18n/ru.ts b/resources/i18n/ru.ts index 2b8a024a8..41e036210 100644 --- a/resources/i18n/ru.ts +++ b/resources/i18n/ru.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -97,14 +96,14 @@ Do you want to continue anyway? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? В тексте оповещения не указано место для вставки параметра (<>). Все равно продолжить? - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. Вы не указали текст оповещения. Пожалуйста введите текст перед добавлением. @@ -2533,7 +2532,7 @@ OpenLP разрабатывается и поддерживается добро - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) Норвежский (nb) @@ -2590,7 +2589,8 @@ OpenLP разрабатывается и поддерживается добро Qt5: http://qt.io PyQt5: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ - MuPDF: http://www.mupdf.com/ + MuPDF: http://www.mupdf.com/ + @@ -2610,16 +2610,17 @@ OpenLP разрабатывается и поддерживается добро Единородного, дабы всякий, верующий в Него, не погиб, но имел жизнь вечную» (Ин 3:16) - И в завершение, выражаем нашу главную благодарность - Богу нашему Отцу за то, что Он отправил Своего Сына - умереть на кресте и освободить нас от греха. - Мы предоставляем это программное обеспечение даром, + И в завершение, выражаем нашу главную + благодарность Богу нашему Отцу за то, что + Он отправил Своего Сына умереть на кресте + и освободить нас от греха. Мы предоставляем + это программное обеспечение даром, потому что Бог освободил нас даром. - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s Copyright © 2004-2016 %s Portions copyright © 2004-2016 %s @@ -3478,7 +3479,7 @@ This location will be used after OpenLP is closed. No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - Не удалось обнаружить подключение к Интернету. Мастеру первого запуска необходимо подключение к Интернету, чтобы скачать образцы песен, Библии и темы. Нажмите на кнопку «Завершить» сейчас, чтобы запустить OpenLP с начальными настройками и без скачивания данных. + Не удалось обнаружить подключение к Интернету. Мастеру первого запуска необходимо подключение к Интернету, чтобы скачать образцы песен, Библии и темы. Нажмите на кнопку «Завершить» сейчас, чтобы запустить OpenLP с начальными настройками и без скачивания данных. Скачать эти данные можно позже. Для этого проверьте подключение к Интернету и повторно запустите мастер первого запуска, выбрав в меню OpenLP пункт «Инструменты / Запуск мастера первого запуска». @@ -4488,7 +4489,7 @@ Processing has terminated and no changes have been made. Database: %s Загружаемая база данных была создана в более ранней версии OpenLP. База данных имеет версию %d (требуется версия %d). -База данных не будет загружена +База данных не будет загружена База данных: %s @@ -6965,7 +6966,7 @@ These files will be removed if you continue to save. - © + © Copyright symbol. © @@ -7536,19 +7537,19 @@ Please try selecting it individually. Replace live background is not available when the WebKit player is disabled. - + Замена фона недоступна при отключенном плеере WebKit. Songbook Singular - + Сборник Songbooks Plural - + Сборники @@ -8569,7 +8570,7 @@ The encoding is responsible for the correct character representation. &Add to Song - Д&обавить к песне + &Добавить к песне @@ -8733,42 +8734,42 @@ Please enter the verses separated by spaces. &Manage Authors, Topics, Songbooks - + &Редактировать списки Add &to Song - + До&бавить к песне Re&move - + &Удалить Authors, Topics && Songbooks - + Информация Add Songbook - + Добавить сборник This Songbook does not exist, do you want to add it? - + Добавить сборник? This Songbook is already in the list. - + Сборник уже в списке. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + Не выбран сборник. Необходимо выбрать сборник из списка или ввести название нового сборник и нажать "Добавить к песне". @@ -9213,7 +9214,7 @@ Please enter the verses separated by spaces. Search Songbooks... - + Поиск сборников... @@ -9301,7 +9302,7 @@ Please enter the verses separated by spaces. Songbook Maintenance - + Списки @@ -9608,7 +9609,7 @@ Please enter the verses separated by spaces. Stop - + Остановить @@ -9828,4 +9829,4 @@ Please enter the verses separated by spaces. Дубликаты песен не были найдены в базе. - + \ No newline at end of file diff --git a/resources/i18n/sk.ts b/resources/i18n/sk.ts index bc56aa90c..b27a12595 100644 --- a/resources/i18n/sk.ts +++ b/resources/i18n/sk.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -97,14 +96,14 @@ Chcete napriek tomu pokračovat? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Text upozornenia neobsahuje '<>'. Chcete napriek tomu pokračovat? - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. Nebol zadaný žiadny text upozornenia. Pred kliknutím na Nový prosím zadajte nejaký text. @@ -1772,7 +1771,7 @@ Upozornenie: Verše z www Biblie budú stiahnuté na vyžiadanie a preto je potr Are you sure you want to delete the "%d" selected custom slide(s)? - + Ste si istý, že chcete zmazať "%d" vybraných užívateľských snímkov(y)? @@ -2525,7 +2524,7 @@ OpenLP je tvorený a spravovaný dobrovoľníkmi. Ak by ste chceli vidieť viac - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) Nórčina Bokmål (nb) @@ -2611,9 +2610,10 @@ On nás oslobodil. - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s - + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s + Autorské práva © 2004-2016 %s +Čiastočné autorská práva © 2004-2016 %s @@ -4628,7 +4628,7 @@ Prípona nie je podporovaná NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" - + Poznámka: Aby sa dalo použiť VLC je potrebné nainštalovať verziu %s @@ -6459,7 +6459,7 @@ Tieto súbory budú vymazané ak budeťe pokračovať v ukladaní. %s time(s) by %s - + %s krát použité v %s @@ -6949,7 +6949,7 @@ Tieto súbory budú vymazané ak budeťe pokračovať v ukladaní. - © + © Copyright symbol. © @@ -7520,19 +7520,19 @@ Skúste to prosím výberom individuálne. Replace live background is not available when the WebKit player is disabled. - + Nahradiť živé pozadie (live background) nie je dostupné keď je prehrávač WebKit zakázaný. Songbook Singular - + Spevník Songbooks Plural - + Spevníky @@ -8711,42 +8711,42 @@ Prosím vložte verše oddelené medzerou. &Manage Authors, Topics, Songbooks - + &Správa autorov, tém a spevníkov Add &to Song - + &Pridať k piesni Re&move - + &Odstrániť Authors, Topics && Songbooks - + Autori, témy a spevníky Add Songbook - + Pridať spevník This Songbook does not exist, do you want to add it? - + Tento spevník neexistuje. Chcete ho pridať? This Songbook is already in the list. - + Tento spevník je už v zozname. You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + Nie je vybraný platný spevník. Buď vyberiete spevník zo zoznamu, alebo zadáte nový spevník a pre pridanie nového spevníku kliknete na tlačidlo "Pridať k piesni". @@ -9186,12 +9186,12 @@ Prosím vložte verše oddelené medzerou. Are you sure you want to delete the "%d" selected song(s)? - + Ste si istý, že chcete zmazať "%d" vybraných piesní(e)? Search Songbooks... - + Vyhľadávať spevníky... @@ -9279,7 +9279,7 @@ Prosím vložte verše oddelené medzerou. Songbook Maintenance - + Údržba spevníku @@ -9586,7 +9586,7 @@ Prosím vložte verše oddelené medzerou. Stop - + Zastaviť @@ -9806,4 +9806,4 @@ Prosím vložte verše oddelené medzerou. Žiadne duplicitné piesne neboli nájdené. - + \ No newline at end of file diff --git a/resources/i18n/sv.ts b/resources/i18n/sv.ts index 7b89d89b8..7be8537a0 100644 --- a/resources/i18n/sv.ts +++ b/resources/i18n/sv.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -97,14 +96,14 @@ Vill du fortsätta ändå? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? Meddelandet innehåller inte '<>'. Vill du fortsätta ändå? - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. Du har inte angivit någon text för ditt meddelande. Skriv in din text innan du klickar på Nytt. @@ -1599,7 +1598,7 @@ Färdig Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + @@ -1778,7 +1777,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the "%d" selected custom slide(s)? - + @@ -2004,7 +2003,7 @@ Vill du lägga till dom andra bilderna ändå? This media player uses your operating system to provide media capabilities. - + @@ -2432,147 +2431,147 @@ OpenLP utvecklas och underhålls av frivilliga. Om du vill se mer fri kristen mj Project Lead - + Developers - + Contributors - + Packagers - + Testers - + Translators - + Afrikaans (af) - + Czech (cs) - + Danish (da) - + German (de) - + Greek (el) - + English, United Kingdom (en_GB) - + English, South Africa (en_ZA) - + Spanish (es) - + Estonian (et) - + Finnish (fi) - + French (fr) - + Hungarian (hu) - + Indonesian (id) - + Japanese (ja) - + - Norwegian Bokmål (nb) - + Norwegian Bokmål (nb) + Dutch (nl) - + Polish (pl) - + Portuguese, Brazil (pt_BR) - + Russian (ru) - + Swedish (sv) - + Tamil(Sri-Lanka) (ta_LK) - + Chinese(China) (zh_CN) - + Documentation - + @@ -2583,7 +2582,7 @@ OpenLP utvecklas och underhålls av frivilliga. Om du vill se mer fri kristen mj Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ - + @@ -2598,13 +2597,13 @@ OpenLP utvecklas och underhålls av frivilliga. Om du vill se mer fri kristen mj on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - + - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s - + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s + @@ -3227,12 +3226,12 @@ Den nya platsen kommer att användas efter att OpenLP har avslutats. Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. - + @@ -3635,7 +3634,7 @@ För att avbryta Kom igång-guiden helt (och inte starta OpenLP), klicka på kna End tag %(end)s does not match end tag for start tag %(start)s - + @@ -4411,47 +4410,47 @@ Processen har avbrutits och inga ändringar gjordes. &Recent Services - + &New Service - + &Open Service - + &Save Service - + Save Service &As... - + &Manage Plugins - + Exit OpenLP - + Are you sure you want to exit OpenLP? - + &Exit OpenLP - + @@ -4622,7 +4621,7 @@ Filändelsen stöds ej NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" - + @@ -4665,7 +4664,7 @@ Filändelsen stöds ej Manage Plugins - + @@ -6453,19 +6452,19 @@ Filerna kommer att tas bort från körschemat om du går vidare och sparar. %s time(s) by %s - + Unable to delete theme - + Theme is currently used %s - + @@ -6941,7 +6940,7 @@ Filerna kommer att tas bort från körschemat om du går vidare och sparar. - © + © Copyright symbol. © @@ -7512,19 +7511,19 @@ Försök att välja den separat. Replace live background is not available when the WebKit player is disabled. - + Songbook Singular - + Songbooks Plural - + @@ -8703,47 +8702,47 @@ Ange verserna separerade med blanksteg. There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. - + &Manage Authors, Topics, Songbooks - + Add &to Song - + Re&move - + Authors, Topics && Songbooks - + Add Songbook - + This Songbook does not exist, do you want to add it? - + This Songbook is already in the list. - + You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + @@ -9073,37 +9072,37 @@ Please enter the verses separated by spaces. OpenLyrics or OpenLP 2 Exported Song - + OpenLP 2 Databases - + LyriX Files - + LyriX (Exported TXT-files) - + VideoPsalm Files - + VideoPsalm - + The VideoPsalm songbooks are normally located in %s - + @@ -9111,7 +9110,7 @@ Please enter the verses separated by spaces. Error: %s - + @@ -9183,12 +9182,12 @@ Please enter the verses separated by spaces. Are you sure you want to delete the "%d" selected song(s)? - + Search Songbooks... - + @@ -9204,7 +9203,7 @@ Please enter the verses separated by spaces. Not a valid OpenLP 2 song database. - + @@ -9276,7 +9275,7 @@ Please enter the verses separated by spaces. Songbook Maintenance - + @@ -9583,7 +9582,7 @@ Please enter the verses separated by spaces. Stop - + @@ -9680,7 +9679,7 @@ Please enter the verses separated by spaces. Error: %s - + @@ -9688,12 +9687,12 @@ Please enter the verses separated by spaces. Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words - + Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock - + @@ -9803,4 +9802,4 @@ Please enter the verses separated by spaces. Inga sångdubletter hittades i databasen. - + \ No newline at end of file diff --git a/resources/i18n/ta_LK.ts b/resources/i18n/ta_LK.ts index 3f33ba7ef..68d50ce60 100644 --- a/resources/i18n/ta_LK.ts +++ b/resources/i18n/ta_LK.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -33,7 +32,7 @@ <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. - + @@ -96,15 +95,15 @@ Do you want to continue anyway? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? விழிப்பூட்டல் உரை இல்லை '<>'. ⏎ தொடர விரும்புகிறீர்களா? - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. - + @@ -657,37 +656,37 @@ Please type in some text before clicking New. : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 - + v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 - + V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 - + verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 - + verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 - + - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - + @@ -699,19 +698,19 @@ Please type in some text before clicking New. , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 - + and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 - + end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse - + @@ -926,7 +925,7 @@ search results and on display: Show verse numbers - + @@ -1262,27 +1261,27 @@ It is not possible to customize the Book Names. Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. - + Click to download bible list - + Download bible list - + Error during download - + An error occurred while downloading the list of bibles from %s. - + @@ -1423,7 +1422,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. - + @@ -1431,7 +1430,7 @@ You will need to re-import this Bible to use it again. Importing %(bookname)s %(chapter)s... - + @@ -1439,12 +1438,12 @@ You will need to re-import this Bible to use it again. Removing unused tags (this may take a few minutes)... - + Importing %(bookname)s %(chapter)s... - + @@ -1593,7 +1592,7 @@ Complete Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + @@ -1601,7 +1600,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. - + @@ -1609,7 +1608,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Importing %(bookname)s %(chapter)s... - + @@ -1675,7 +1674,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - + @@ -1693,7 +1692,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Import missing custom slides from service files - + @@ -1756,7 +1755,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I You need to add at least one slide. - + @@ -1772,7 +1771,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the "%d" selected custom slide(s)? - + @@ -1842,32 +1841,32 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Add group - + Parent group: - + Group name: - + You need to type in a group name. - + Could not add the new group. - + This group already exists. - + @@ -1875,27 +1874,27 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Select Image Group - + Add images to group: - + No group - + Existing group - + New group - + @@ -1948,22 +1947,22 @@ Do you want to add the other images anyway? -- Top-level group -- - + You must select an image or group to delete. - + Remove group - + Are you sure you want to remove "%s" and everything in it? - + @@ -1979,27 +1978,27 @@ Do you want to add the other images anyway? Audio - + Video - + VLC is an external player which supports a number of different formats. - + Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. - + This media player uses your operating system to provide media capabilities. - + @@ -2068,32 +2067,32 @@ Do you want to add the other images anyway? Select Media Clip - + Source - + Media path: - + Select drive from list - + Load disc - + Track Details - + @@ -2103,52 +2102,52 @@ Do you want to add the other images anyway? Audio track: - + Subtitle track: - + HH:mm:ss.z - + Clip Range - + Start point: - + Set start point - + Jump to start point - + End point: - + Set end point - + Jump to end point - + @@ -2156,67 +2155,67 @@ Do you want to add the other images anyway? No path was given - + Given path does not exists - + An error happened during initialization of VLC player - + VLC player failed playing the media - + CD not loaded correctly - + The CD was not loaded correctly, please re-load and try again. - + DVD not loaded correctly - + The DVD was not loaded correctly, please re-load and try again. - + Set name of mediaclip - + Name of mediaclip: - + Enter a valid name or cancel - + Invalid character - + The name of the mediaclip must not contain the character ":" - + @@ -2274,37 +2273,37 @@ Do you want to add the other images anyway? VLC player required - + VLC player required for playback of optical devices - + Load CD/DVD - + Load CD/DVD - only supported when VLC is installed and enabled - + The optical disc %s is no longer available. - + Mediaclip already saved - + This mediaclip has already been saved - + @@ -2317,7 +2316,7 @@ Do you want to add the other images anyway? Start Live items automatically - + @@ -2325,7 +2324,7 @@ Do you want to add the other images anyway? &Projector Manager - + @@ -2352,27 +2351,27 @@ OpenLP இப்போது மேம்படுத்த வேண்ட Backup - + OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? - + Backup of the data folder failed! - + A backup of the data folder has been created at %s - + Open - + @@ -2427,147 +2426,147 @@ OpenLP தொண்டர்கள் எழுதி பராமரிக Project Lead - + Developers - + Contributors - + Packagers - + Testers - + Translators - + Afrikaans (af) - + Czech (cs) - + Danish (da) - + German (de) - + Greek (el) - + English, United Kingdom (en_GB) - + English, South Africa (en_ZA) - + Spanish (es) - + Estonian (et) - + Finnish (fi) - + French (fr) - + Hungarian (hu) - + Indonesian (id) - + Japanese (ja) - + - Norwegian Bokmål (nb) - + Norwegian Bokmål (nb) + Dutch (nl) - + Polish (pl) - + Portuguese, Brazil (pt_BR) - + Russian (ru) - + Swedish (sv) - + Tamil(Sri-Lanka) (ta_LK) - + Chinese(China) (zh_CN) - + Documentation - + @@ -2578,7 +2577,7 @@ OpenLP தொண்டர்கள் எழுதி பராமரிக Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ - + @@ -2593,13 +2592,13 @@ OpenLP தொண்டர்கள் எழுதி பராமரிக on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - + - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s - + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s + @@ -2882,17 +2881,17 @@ OpenLP மூடப்படும் போது தரவு அடைவ Thursday - + Display Workarounds - + Use alternating row colours in lists - + @@ -2903,17 +2902,17 @@ The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? - + Restart Required - + This change will only take effect once OpenLP has been restarted. - + @@ -2938,252 +2937,252 @@ OpenLP மூடிய பிறகு இந்த இடம் பயன்ப RGB - + Video - + Digital - + Storage - + Network - + RGB 1 - + RGB 2 - + RGB 3 - + RGB 4 - + RGB 5 - + RGB 6 - + RGB 7 - + RGB 8 - + RGB 9 - + Video 1 - + Video 2 - + Video 3 - + Video 4 - + Video 5 - + Video 6 - + Video 7 - + Video 8 - + Video 9 - + Digital 1 - + Digital 2 - + Digital 3 - + Digital 4 - + Digital 5 - + Digital 6 - + Digital 7 - + Digital 8 - + Digital 9 - + Storage 1 - + Storage 2 - + Storage 3 - + Storage 4 - + Storage 5 - + Storage 6 - + Storage 7 - + Storage 8 - + Storage 9 - + Network 1 - + Network 2 - + Network 3 - + Network 4 - + Network 5 - + Network 6 - + Network 7 - + Network 8 - + Network 9 - + @@ -3217,12 +3216,12 @@ OpenLP மூடிய பிறகு இந்த இடம் பயன்ப Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. - + @@ -3460,79 +3459,79 @@ To re-run the First Time Wizard and import this sample data at a later time, che There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. - + Download complete. Click the %s button to return to OpenLP. - + Download complete. Click the %s button to start OpenLP. - + Click the %s button to return to OpenLP. - + Click the %s button to start OpenLP. - + There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. - + This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. - + To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. - + Downloading Resource Index - + Please wait while the resource index is downloaded. - + Please wait while OpenLP downloads the resource index file... - + Downloading and Configuring - + Please wait while resources are downloaded and OpenLP is configured. - + Network Error - + There was a network error attempting to connect to retrieve initial configuration information - + @@ -3542,7 +3541,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Unable to download some files - + @@ -3575,12 +3574,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Default Formatting - + Custom Formatting - + @@ -3598,12 +3597,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Description is missing - + Tag is missing - + @@ -3613,17 +3612,17 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Description %s already defined. - + Start tag %s is not valid HTML - + End tag %(end)s does not match end tag for start tag %(start)s - + @@ -4338,12 +4337,12 @@ Re-running this wizard may make changes to your current OpenLP configuration and Library - + Jump to the search box of the current active plugin. - + @@ -4352,89 +4351,89 @@ Re-running this wizard may make changes to your current OpenLP configuration and Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. - + Projector Manager - + Toggle Projector Manager - + Toggle the visibility of the Projector Manager - + Export setting error - + The key "%s" does not have a default value so it will be skipped in this export. - + An error occurred while exporting the settings: %s - + &Recent Services - + &New Service - + &Open Service - + &Save Service - + Save Service &As... - + &Manage Plugins - + Exit OpenLP - + Are you sure you want to exit OpenLP? - + &Exit OpenLP - + @@ -4557,22 +4556,22 @@ Suffix not supported Unknown status - + No message - + Error while sending data to projector - + Undefined command: - + @@ -4580,7 +4579,7 @@ Suffix not supported Players - + @@ -4590,12 +4589,12 @@ Suffix not supported Player Search Order - + Visible background for videos with aspect ratio different to screen. - + @@ -4606,7 +4605,7 @@ Suffix not supported NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" - + @@ -4649,7 +4648,7 @@ Suffix not supported Manage Plugins - + @@ -4748,257 +4747,257 @@ Suffix not supported OK - + General projector error - + Not connected error - + Lamp error - + Fan error - + High temperature detected - + Cover open detected - + Check filter - + Authentication Error - + Undefined Command - + Invalid Parameter - + Projector Busy - + Projector/Display Error - + Invalid packet received - + Warning condition detected - + Error condition detected - + PJLink class not supported - + Invalid prefix character - + The connection was refused by the peer (or timed out) - + The remote host closed the connection - + The host address was not found - + The socket operation failed because the application lacked the required privileges - + The local system ran out of resources (e.g., too many sockets) - + The socket operation timed out - + The datagram was larger than the operating system's limit - + An error occurred with the network (Possibly someone pulled the plug?) - + The address specified with socket.bind() is already in use and was set to be exclusive - + The address specified to socket.bind() does not belong to the host - + The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) - + The socket is using a proxy, and the proxy requires authentication - + The SSL/TLS handshake failed - + The last operation attempted has not finished yet (still in progress in the background) - + Could not contact the proxy server because the connection to that server was denied - + The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) - + The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. - + The proxy address set with setProxy() was not found - + An unidentified error occurred - + Not connected - + Connecting - + Connected - + Getting status - + Off - + Initialize in progress - + Power in standby - + Warmup in progress - + Power is on - + Cooldown in progress - + Projector Information available - + Sending data - + Received data - + The connection negotiation with the proxy server failed because the response from the proxy server could not be understood - + @@ -5006,17 +5005,17 @@ Suffix not supported Name Not Set - + You must enter a name for this entry.<br />Please enter a new name for this entry. - + Duplicate Name - + @@ -5024,37 +5023,37 @@ Suffix not supported Add New Projector - + Edit Projector - + IP Address - + Port Number - + PIN - + Name - + Location - + @@ -5069,7 +5068,7 @@ Suffix not supported There was an error saving projector information. See the log for the error - + @@ -5077,162 +5076,162 @@ Suffix not supported Add Projector - + Add a new projector - + Edit Projector - + Edit selected projector - + Delete Projector - + Delete selected projector - + Select Input Source - + Choose input source on selected projector - + View Projector - + View selected projector information - + Connect to selected projector - + Connect to selected projectors - + Disconnect from selected projectors - + Disconnect from selected projector - + Power on selected projector - + Standby selected projector - + Put selected projector in standby - + Blank selected projector screen - + Show selected projector screen - + &View Projector Information - + &Edit Projector - + &Connect Projector - + D&isconnect Projector - + Power &On Projector - + Power O&ff Projector - + Select &Input - + Edit Input Source - + &Blank Projector Screen - + &Show Projector Screen - + &Delete Projector - + Name - + IP - + @@ -5247,102 +5246,102 @@ Suffix not supported Projector information not available at this time. - + Projector Name - + Manufacturer - + Model - + Other info - + Power status - + Shutter is - + Closed - + Current source input is - + Lamp - + On - + Off - + Hours - + No current errors or warnings - + Current errors/warnings - + Projector Information - + No message - + Not Implemented Yet - + Delete projector (%s) %s? - + Are you sure you want to delete this projector? - + @@ -5350,27 +5349,27 @@ Suffix not supported Fan - + Lamp - + Temperature - + Cover - + Filter - + @@ -5383,37 +5382,37 @@ Suffix not supported Projector - + Communication Options - + Connect to projectors on startup - + Socket timeout (seconds) - + Poll time (seconds) - + Tabbed dialog box - + Single dialog box - + @@ -5421,17 +5420,17 @@ Suffix not supported Duplicate IP Address - + Invalid IP Address - + Invalid Port Number - + @@ -5462,7 +5461,7 @@ Suffix not supported [slide %d] - + @@ -5738,79 +5737,79 @@ Suffix not supported &Rename... - + Create New &Custom Slide - + &Auto play slides - + Auto play slides &Loop - + Auto play slides &Once - + &Delay between slides - + OpenLP Service Files (*.osz *.oszl) - + OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) - + OpenLP Service Files (*.osz);; - + File is not a valid service. The content encoding is not UTF-8. - + The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. - + This file is either corrupt or it is not an OpenLP 2 service file. - + &Auto Start - inactive - + &Auto Start - active - + Input delay - + @@ -5820,7 +5819,7 @@ Suffix not supported Rename item title - + @@ -5830,14 +5829,14 @@ Suffix not supported An error occurred while writing the service file: %s - + The following file(s) in the service are missing: %s These files will be removed if you continue to save. - + @@ -6102,42 +6101,42 @@ These files will be removed if you continue to save. Select Projector Source - + Edit Projector Source Text - + Ignoring current changes and return to OpenLP - + Delete all user-defined text and revert to PJLink default text - + Discard changes and reset to previous user-defined text - + Save changes and return to OpenLP - + Delete entries for this projector - + Are you sure you want to delete ALL user-defined source input text for this projector? - + @@ -6423,29 +6422,29 @@ These files will be removed if you continue to save. The theme export failed because this error occurred: %s - + OpenLP Themes (*.otz) - + %s time(s) by %s - + Unable to delete theme - + Theme is currently used %s - + @@ -6738,17 +6737,17 @@ These files will be removed if you continue to save. Solid color - + color: - + Allows you to change and move the Main and Footer areas. - + @@ -6771,7 +6770,7 @@ These files will be removed if you continue to save. S&ong Level - பா%டல் மட்டம் + @@ -6806,12 +6805,12 @@ These files will be removed if you continue to save. Universal Settings - + &Wrap footer text - + @@ -6921,7 +6920,7 @@ These files will be removed if you continue to save. - © + © Copyright symbol. © @@ -6982,17 +6981,17 @@ These files will be removed if you continue to save. Welcome to the Duplicate Song Removal Wizard - + Written by - + Author Unknown - + @@ -7007,7 +7006,7 @@ These files will be removed if you continue to save. Add group - + @@ -7124,13 +7123,13 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for File Not Found - + File %s not found. Please try selecting it individually. - + @@ -7206,25 +7205,25 @@ Please try selecting it individually. Manufacturer Singular - + Manufacturers Plural - + Model Singular - + Models Plural - + @@ -7321,13 +7320,13 @@ Please try selecting it individually. Projector Singular - + Projectors Plural - + @@ -7476,12 +7475,12 @@ Please try selecting it individually. CCLI song number: - + Preview Toolbar - + @@ -7491,19 +7490,19 @@ Please try selecting it individually. Replace live background is not available when the WebKit player is disabled. - + Songbook Singular - + Songbooks Plural - + @@ -7512,25 +7511,25 @@ Please try selecting it individually. %s and %s Locale list separator: 2 items - + %s, and %s Locale list separator: end - + %s, %s Locale list separator: middle - + %s, %s Locale list separator: start - + @@ -7538,7 +7537,7 @@ Please try selecting it individually. Source select dialog interface - + @@ -7651,7 +7650,7 @@ Please try selecting it individually. An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. - + @@ -7674,37 +7673,37 @@ Please try selecting it individually. PDF options - + Use given full path for mudraw or ghostscript binary: - + Select mudraw or ghostscript binary. - + The program is not ghostscript or mudraw which is required. - + PowerPoint options - + Clicking on a selected slide in the slidecontroller advances to next effect. - + Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). - + @@ -7735,12 +7734,12 @@ Please try selecting it individually. Server Config Change - + Server configuration changes will require a restart to take effect. - + @@ -7863,12 +7862,12 @@ Please try selecting it individually. Stage View - + Live View - + @@ -7911,27 +7910,27 @@ Please try selecting it individually. Live view URL: - + HTTPS Server - + Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. - + User Authentication - + User id: - + @@ -7941,12 +7940,12 @@ Please try selecting it individually. Show thumbnails of non-text slides in remote and stage view. - + Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. - + @@ -8061,12 +8060,12 @@ Please try selecting it individually. Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + All requested data has been deleted successfully. - + @@ -8124,17 +8123,17 @@ has been successfully created. You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + Report Creation Failed - + An error occurred while creating the report: %s - + @@ -8321,22 +8320,22 @@ The encoding is responsible for the correct character representation. CCLI SongSelect - + Import songs from CCLI's SongSelect service. - + Find &Duplicate Songs - + Find and remove duplicate songs in the song database. - + @@ -8345,25 +8344,25 @@ The encoding is responsible for the correct character representation. Words Author who wrote the lyrics of a song - + Music Author who wrote the music of a song - + Words and Music Author who wrote both lyrics and music of a song - + Translation Author who translated the song - + @@ -8417,7 +8416,7 @@ The encoding is responsible for the correct character representation. Invalid DreamBeam song file. Missing DreamSong tag. - + @@ -8430,43 +8429,43 @@ The encoding is responsible for the correct character representation. "%s" could not be imported. %s - + Unexpected data formatting. - + No song text found. - + [above are Song Tags with notes imported from EasyWorship] - + This file does not exist. - + Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. - + This file is not a valid EasyWorship database. - + Could not retrieve encoding. - + @@ -8648,79 +8647,79 @@ The encoding is responsible for the correct character representation. <strong>Warning:</strong> You have not entered a verse order. - + There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. - + Invalid Verse Order - + &Edit Author Type - + Edit Author Type - + Choose type for this author - + There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. - + &Manage Authors, Topics, Songbooks - + Add &to Song - + Re&move - + Authors, Topics && Songbooks - + Add Songbook - + This Songbook does not exist, do you want to add it? - + This Songbook is already in the list. - + You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + @@ -8826,7 +8825,7 @@ Please enter the verses separated by spaces. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. - + @@ -8834,7 +8833,7 @@ Please enter the verses separated by spaces. Invalid Foilpresenter song file. No verses found. - + @@ -9005,82 +9004,82 @@ Please enter the verses separated by spaces. EasyWorship Service File - + WorshipCenter Pro Song Files - + The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + PowerPraise Song Files - + PresentationManager Song Files - + ProPresenter 4 Song Files - + Worship Assistant Files - + Worship Assistant (CSV) - + In Worship Assistant, export your Database to a CSV file. - + OpenLyrics or OpenLP 2 Exported Song - + OpenLP 2 Databases - + LyriX Files - + LyriX (Exported TXT-files) - + VideoPsalm Files - + VideoPsalm - + The VideoPsalm songbooks are normally located in %s - + @@ -9088,7 +9087,7 @@ Please enter the verses separated by spaces. Error: %s - + @@ -9160,12 +9159,12 @@ Please enter the verses separated by spaces. Are you sure you want to delete the "%d" selected song(s)? - + Search Songbooks... - + @@ -9181,7 +9180,7 @@ Please enter the verses separated by spaces. Not a valid OpenLP 2 song database. - + @@ -9197,7 +9196,7 @@ Please enter the verses separated by spaces. Invalid OpenSong song file. Missing song tag. - + @@ -9253,7 +9252,7 @@ Please enter the verses separated by spaces. Songbook Maintenance - + @@ -9272,7 +9271,7 @@ Please enter the verses separated by spaces. Your song export failed because this error occurred: %s - + @@ -9416,12 +9415,12 @@ Please enter the verses separated by spaces. CCLI SongSelect Importer - + <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. - + @@ -9436,17 +9435,17 @@ Please enter the verses separated by spaces. Save username and password - + Login - + Search Text: - + @@ -9456,12 +9455,12 @@ Please enter the verses separated by spaces. Found %s song(s) - + Logout - + @@ -9476,7 +9475,7 @@ Please enter the verses separated by spaces. Author(s): - + @@ -9486,17 +9485,17 @@ Please enter the verses separated by spaces. CCLI Number: - + Lyrics: - + Back - + @@ -9506,62 +9505,62 @@ Please enter the verses separated by spaces. More than 1000 results - + Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. - + Logging out... - + Save Username and Password - + WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. - + Error Logging In - + There was a problem logging in, perhaps your username or password is incorrect? - + Song Imported - + Incomplete song - + This song is missing some information, like the lyrics, and cannot be imported. - + Your song has been imported, would you like to import more songs? - + Stop - + @@ -9589,12 +9588,12 @@ Please enter the verses separated by spaces. Display songbook in footer - + Display "%s" symbol before copyright info - + @@ -9658,7 +9657,7 @@ Please enter the verses separated by spaces. Error: %s - + @@ -9666,12 +9665,12 @@ Please enter the verses separated by spaces. Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words - + Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock - + @@ -9694,7 +9693,7 @@ Please enter the verses separated by spaces. File not valid WorshipAssistant CSV format. - + @@ -9707,7 +9706,7 @@ Please enter the verses separated by spaces. Unable to connect the WorshipCenter Pro database. - + @@ -9743,32 +9742,32 @@ Please enter the verses separated by spaces. Wizard - + This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. - + Searching for duplicate songs. - + Please wait while your songs database is analyzed. - + Here you can decide which songs to remove and which ones to keep. - + Review duplicate songs (%s/%s) - + @@ -9778,7 +9777,7 @@ Please enter the verses separated by spaces. No duplicate songs have been found in the database. - + - + \ No newline at end of file diff --git a/resources/i18n/th_TH.ts b/resources/i18n/th_TH.ts index 75aea3ebb..c2b9a72dc 100644 --- a/resources/i18n/th_TH.ts +++ b/resources/i18n/th_TH.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -97,14 +96,14 @@ Do you want to continue anyway? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? ข้อความแจ้งเตือนไม่มี '<>' คุณต้องการดำเนินการต่อไปหรือไม่? - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. คุณไม่ได้ป้อนข้อความแจ้งเตือนใด ๆ โปรดป้อนข้อความก่อนคลิกใหม่ @@ -1598,7 +1597,7 @@ Complete Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + @@ -1777,7 +1776,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the "%d" selected custom slide(s)? - + @@ -1957,7 +1956,7 @@ Do you want to add the other images anyway? You must select an image or group to delete. - + @@ -1993,17 +1992,17 @@ Do you want to add the other images anyway? VLC is an external player which supports a number of different formats. - + Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. - + This media player uses your operating system to provide media capabilities. - + @@ -2072,32 +2071,32 @@ Do you want to add the other images anyway? Select Media Clip - + Source - + Media path: - + Select drive from list - + Load disc - + Track Details - + @@ -2107,12 +2106,12 @@ Do you want to add the other images anyway? Audio track: - + Subtitle track: - + @@ -2122,37 +2121,37 @@ Do you want to add the other images anyway? Clip Range - + Start point: - + Set start point - + Jump to start point - + End point: - + Set end point - + Jump to end point - + @@ -2160,67 +2159,67 @@ Do you want to add the other images anyway? No path was given - + Given path does not exists - + An error happened during initialization of VLC player - + VLC player failed playing the media - + CD not loaded correctly - + The CD was not loaded correctly, please re-load and try again. - + DVD not loaded correctly - + The DVD was not loaded correctly, please re-load and try again. - + Set name of mediaclip - + Name of mediaclip: - + Enter a valid name or cancel - + Invalid character - + The name of the mediaclip must not contain the character ":" - + @@ -2278,37 +2277,37 @@ Do you want to add the other images anyway? VLC player required - + VLC player required for playback of optical devices - + Load CD/DVD - + Load CD/DVD - only supported when VLC is installed and enabled - + The optical disc %s is no longer available. - + Mediaclip already saved - + This mediaclip has already been saved - + @@ -2321,7 +2320,7 @@ Do you want to add the other images anyway? Start Live items automatically - + @@ -2329,7 +2328,7 @@ Do you want to add the other images anyway? &Projector Manager - + @@ -2356,27 +2355,27 @@ Should OpenLP upgrade now? Backup - + OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? - + Backup of the data folder failed! - + A backup of the data folder has been created at %s - + Open - + @@ -2431,147 +2430,147 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr Project Lead - + Developers - + Contributors - + Packagers - + Testers - + Translators - + Afrikaans (af) - + Czech (cs) - + Danish (da) - + German (de) - + Greek (el) - + English, United Kingdom (en_GB) - + English, South Africa (en_ZA) - + Spanish (es) - + Estonian (et) - + Finnish (fi) - + French (fr) - + Hungarian (hu) - + Indonesian (id) - + Japanese (ja) - + - Norwegian Bokmål (nb) - + Norwegian Bokmål (nb) + Dutch (nl) - + Polish (pl) - + Portuguese, Brazil (pt_BR) - + Russian (ru) - + Swedish (sv) - + Tamil(Sri-Lanka) (ta_LK) - + Chinese(China) (zh_CN) - + Documentation - + @@ -2582,7 +2581,7 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ - + @@ -2597,13 +2596,13 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - + - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s - + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s + @@ -2885,17 +2884,17 @@ The data directory will be changed when OpenLP is closed. Thursday - + Display Workarounds - + Use alternating row colours in lists - + @@ -2906,17 +2905,17 @@ The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? - + Restart Required - + This change will only take effect once OpenLP has been restarted. - + @@ -2941,7 +2940,7 @@ This location will be used after OpenLP is closed. RGB - + @@ -2951,242 +2950,242 @@ This location will be used after OpenLP is closed. Digital - + Storage - + Network - + RGB 1 - + RGB 2 - + RGB 3 - + RGB 4 - + RGB 5 - + RGB 6 - + RGB 7 - + RGB 8 - + RGB 9 - + Video 1 - + Video 2 - + Video 3 - + Video 4 - + Video 5 - + Video 6 - + Video 7 - + Video 8 - + Video 9 - + Digital 1 - + Digital 2 - + Digital 3 - + Digital 4 - + Digital 5 - + Digital 6 - + Digital 7 - + Digital 8 - + Digital 9 - + Storage 1 - + Storage 2 - + Storage 3 - + Storage 4 - + Storage 5 - + Storage 6 - + Storage 7 - + Storage 8 - + Storage 9 - + Network 1 - + Network 2 - + Network 3 - + Network 4 - + Network 5 - + Network 6 - + Network 7 - + Network 8 - + Network 9 - + @@ -3220,12 +3219,12 @@ This location will be used after OpenLP is closed. Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. - + @@ -3463,79 +3462,79 @@ To re-run the First Time Wizard and import this sample data at a later time, che There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. - + Download complete. Click the %s button to return to OpenLP. - + Download complete. Click the %s button to start OpenLP. - + Click the %s button to return to OpenLP. - + Click the %s button to start OpenLP. - + There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. - + This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. - + To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. - + Downloading Resource Index - + Please wait while the resource index is downloaded. - + Please wait while OpenLP downloads the resource index file... - + Downloading and Configuring - + Please wait while resources are downloaded and OpenLP is configured. - + Network Error - + There was a network error attempting to connect to retrieve initial configuration information - + @@ -3545,7 +3544,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Unable to download some files - + @@ -3578,12 +3577,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Default Formatting - + Custom Formatting - + @@ -3601,12 +3600,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Description is missing - + Tag is missing - + @@ -3616,17 +3615,17 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Description %s already defined. - + Start tag %s is not valid HTML - + End tag %(end)s does not match end tag for start tag %(start)s - + @@ -4340,12 +4339,12 @@ Re-running this wizard may make changes to your current OpenLP configuration and Library - + Jump to the search box of the current active plugin. - + @@ -4354,89 +4353,89 @@ Re-running this wizard may make changes to your current OpenLP configuration and Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. - + Projector Manager - + Toggle Projector Manager - + Toggle the visibility of the Projector Manager - + Export setting error - + The key "%s" does not have a default value so it will be skipped in this export. - + An error occurred while exporting the settings: %s - + &Recent Services - + &New Service - + &Open Service - + &Save Service - + Save Service &As... - + &Manage Plugins - + Exit OpenLP - + Are you sure you want to exit OpenLP? - + &Exit OpenLP - + @@ -4558,22 +4557,22 @@ Suffix not supported Unknown status - + No message - + Error while sending data to projector - + Undefined command: - + @@ -4581,7 +4580,7 @@ Suffix not supported Players - + @@ -4591,12 +4590,12 @@ Suffix not supported Player Search Order - + Visible background for videos with aspect ratio different to screen. - + @@ -4607,7 +4606,7 @@ Suffix not supported NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" - + @@ -4650,7 +4649,7 @@ Suffix not supported Manage Plugins - + @@ -4749,257 +4748,257 @@ Suffix not supported OK - + General projector error - + Not connected error - + Lamp error - + Fan error - + High temperature detected - + Cover open detected - + Check filter - + Authentication Error - + Undefined Command - + Invalid Parameter - + Projector Busy - + Projector/Display Error - + Invalid packet received - + Warning condition detected - + Error condition detected - + PJLink class not supported - + Invalid prefix character - + The connection was refused by the peer (or timed out) - + The remote host closed the connection - + The host address was not found - + The socket operation failed because the application lacked the required privileges - + The local system ran out of resources (e.g., too many sockets) - + The socket operation timed out - + The datagram was larger than the operating system's limit - + An error occurred with the network (Possibly someone pulled the plug?) - + The address specified with socket.bind() is already in use and was set to be exclusive - + The address specified to socket.bind() does not belong to the host - + The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) - + The socket is using a proxy, and the proxy requires authentication - + The SSL/TLS handshake failed - + The last operation attempted has not finished yet (still in progress in the background) - + Could not contact the proxy server because the connection to that server was denied - + The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) - + The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. - + The proxy address set with setProxy() was not found - + An unidentified error occurred - + Not connected - + Connecting - + Connected - + Getting status - + Off - + Initialize in progress - + Power in standby - + Warmup in progress - + Power is on - + Cooldown in progress - + Projector Information available - + Sending data - + Received data - + The connection negotiation with the proxy server failed because the response from the proxy server could not be understood - + @@ -5007,17 +5006,17 @@ Suffix not supported Name Not Set - + You must enter a name for this entry.<br />Please enter a new name for this entry. - + Duplicate Name - + @@ -5025,37 +5024,37 @@ Suffix not supported Add New Projector - + Edit Projector - + IP Address - + Port Number - + PIN - + Name - + Location - + @@ -5070,7 +5069,7 @@ Suffix not supported There was an error saving projector information. See the log for the error - + @@ -5078,162 +5077,162 @@ Suffix not supported Add Projector - + Add a new projector - + Edit Projector - + Edit selected projector - + Delete Projector - + Delete selected projector - + Select Input Source - + Choose input source on selected projector - + View Projector - + View selected projector information - + Connect to selected projector - + Connect to selected projectors - + Disconnect from selected projectors - + Disconnect from selected projector - + Power on selected projector - + Standby selected projector - + Put selected projector in standby - + Blank selected projector screen - + Show selected projector screen - + &View Projector Information - + &Edit Projector - + &Connect Projector - + D&isconnect Projector - + Power &On Projector - + Power O&ff Projector - + Select &Input - + Edit Input Source - + &Blank Projector Screen - + &Show Projector Screen - + &Delete Projector - + Name - + IP - + @@ -5248,102 +5247,102 @@ Suffix not supported Projector information not available at this time. - + Projector Name - + Manufacturer - + Model - + Other info - + Power status - + Shutter is - + Closed - + Current source input is - + Lamp - + On - + Off - + Hours - + No current errors or warnings - + Current errors/warnings - + Projector Information - + No message - + Not Implemented Yet - + Delete projector (%s) %s? - + Are you sure you want to delete this projector? - + @@ -5351,27 +5350,27 @@ Suffix not supported Fan - + Lamp - + Temperature - + Cover - + Filter - + @@ -5384,37 +5383,37 @@ Suffix not supported Projector - + Communication Options - + Connect to projectors on startup - + Socket timeout (seconds) - + Poll time (seconds) - + Tabbed dialog box - + Single dialog box - + @@ -5422,17 +5421,17 @@ Suffix not supported Duplicate IP Address - + Invalid IP Address - + Invalid Port Number - + @@ -5463,7 +5462,7 @@ Suffix not supported [slide %d] - + @@ -5739,79 +5738,79 @@ Suffix not supported &Rename... - + Create New &Custom Slide - + &Auto play slides - + Auto play slides &Loop - + Auto play slides &Once - + &Delay between slides - + OpenLP Service Files (*.osz *.oszl) - + OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) - + OpenLP Service Files (*.osz);; - + File is not a valid service. The content encoding is not UTF-8. - + The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. - + This file is either corrupt or it is not an OpenLP 2 service file. - + &Auto Start - inactive - + &Auto Start - active - + Input delay - + @@ -5821,7 +5820,7 @@ Suffix not supported Rename item title - + @@ -5831,14 +5830,14 @@ Suffix not supported An error occurred while writing the service file: %s - + The following file(s) in the service are missing: %s These files will be removed if you continue to save. - + @@ -6103,42 +6102,42 @@ These files will be removed if you continue to save. Select Projector Source - + Edit Projector Source Text - + Ignoring current changes and return to OpenLP - + Delete all user-defined text and revert to PJLink default text - + Discard changes and reset to previous user-defined text - + Save changes and return to OpenLP - + Delete entries for this projector - + Are you sure you want to delete ALL user-defined source input text for this projector? - + @@ -6424,29 +6423,29 @@ These files will be removed if you continue to save. The theme export failed because this error occurred: %s - + OpenLP Themes (*.otz) - + %s time(s) by %s - + Unable to delete theme - + Theme is currently used %s - + @@ -6739,17 +6738,17 @@ These files will be removed if you continue to save. Solid color - + color: - + Allows you to change and move the Main and Footer areas. - + @@ -6807,12 +6806,12 @@ These files will be removed if you continue to save. Universal Settings - + &Wrap footer text - + @@ -6922,7 +6921,7 @@ These files will be removed if you continue to save. - © + © Copyright symbol. © @@ -6983,17 +6982,17 @@ These files will be removed if you continue to save. Welcome to the Duplicate Song Removal Wizard - + Written by - + Author Unknown - + @@ -7131,7 +7130,7 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for File %s not found. Please try selecting it individually. - + @@ -7207,25 +7206,25 @@ Please try selecting it individually. Manufacturer Singular - + Manufacturers Plural - + Model Singular - + Models Plural - + @@ -7322,13 +7321,13 @@ Please try selecting it individually. Projector Singular - + Projectors Plural - + @@ -7477,12 +7476,12 @@ Please try selecting it individually. CCLI song number: - + Preview Toolbar - + @@ -7492,19 +7491,19 @@ Please try selecting it individually. Replace live background is not available when the WebKit player is disabled. - + Songbook Singular - + Songbooks Plural - + @@ -7513,25 +7512,25 @@ Please try selecting it individually. %s and %s Locale list separator: 2 items - + %s, and %s Locale list separator: end - + %s, %s Locale list separator: middle - + %s, %s Locale list separator: start - + @@ -7539,7 +7538,7 @@ Please try selecting it individually. Source select dialog interface - + @@ -7651,7 +7650,7 @@ Please try selecting it individually. An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. - + @@ -7674,37 +7673,37 @@ Please try selecting it individually. PDF options - + Use given full path for mudraw or ghostscript binary: - + Select mudraw or ghostscript binary. - + The program is not ghostscript or mudraw which is required. - + PowerPoint options - + Clicking on a selected slide in the slidecontroller advances to next effect. - + Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). - + @@ -7735,12 +7734,12 @@ Please try selecting it individually. Server Config Change - + Server configuration changes will require a restart to take effect. - + @@ -7863,12 +7862,12 @@ Please try selecting it individually. Stage View - + Live View - + @@ -7911,27 +7910,27 @@ Please try selecting it individually. Live view URL: - + HTTPS Server - + Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. - + User Authentication - + User id: - + @@ -7941,12 +7940,12 @@ Please try selecting it individually. Show thumbnails of non-text slides in remote and stage view. - + Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. - + @@ -8061,12 +8060,12 @@ Please try selecting it individually. Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + All requested data has been deleted successfully. - + @@ -8124,17 +8123,17 @@ has been successfully created. You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + Report Creation Failed - + An error occurred while creating the report: %s - + @@ -8321,22 +8320,22 @@ The encoding is responsible for the correct character representation. CCLI SongSelect - + Import songs from CCLI's SongSelect service. - + Find &Duplicate Songs - + Find and remove duplicate songs in the song database. - + @@ -8345,25 +8344,25 @@ The encoding is responsible for the correct character representation. Words Author who wrote the lyrics of a song - + Music Author who wrote the music of a song - + Words and Music Author who wrote both lyrics and music of a song - + Translation Author who translated the song - + @@ -8417,7 +8416,7 @@ The encoding is responsible for the correct character representation. Invalid DreamBeam song file. Missing DreamSong tag. - + @@ -8430,43 +8429,43 @@ The encoding is responsible for the correct character representation. "%s" could not be imported. %s - + Unexpected data formatting. - + No song text found. - + [above are Song Tags with notes imported from EasyWorship] - + This file does not exist. - + Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. - + This file is not a valid EasyWorship database. - + Could not retrieve encoding. - + @@ -8647,79 +8646,79 @@ The encoding is responsible for the correct character representation. <strong>Warning:</strong> You have not entered a verse order. - + There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. - + Invalid Verse Order - + &Edit Author Type - + Edit Author Type - + Choose type for this author - + There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. - + &Manage Authors, Topics, Songbooks - + Add &to Song - + Re&move - + Authors, Topics && Songbooks - + Add Songbook - + This Songbook does not exist, do you want to add it? - + This Songbook is already in the list. - + You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + @@ -8825,7 +8824,7 @@ Please enter the verses separated by spaces. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. - + @@ -8833,7 +8832,7 @@ Please enter the verses separated by spaces. Invalid Foilpresenter song file. No verses found. - + @@ -9004,82 +9003,82 @@ Please enter the verses separated by spaces. EasyWorship Service File - + WorshipCenter Pro Song Files - + The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + PowerPraise Song Files - + PresentationManager Song Files - + ProPresenter 4 Song Files - + Worship Assistant Files - + Worship Assistant (CSV) - + In Worship Assistant, export your Database to a CSV file. - + OpenLyrics or OpenLP 2 Exported Song - + OpenLP 2 Databases - + LyriX Files - + LyriX (Exported TXT-files) - + VideoPsalm Files - + VideoPsalm - + The VideoPsalm songbooks are normally located in %s - + @@ -9087,7 +9086,7 @@ Please enter the verses separated by spaces. Error: %s - + @@ -9159,12 +9158,12 @@ Please enter the verses separated by spaces. Are you sure you want to delete the "%d" selected song(s)? - + Search Songbooks... - + @@ -9180,7 +9179,7 @@ Please enter the verses separated by spaces. Not a valid OpenLP 2 song database. - + @@ -9196,7 +9195,7 @@ Please enter the verses separated by spaces. Invalid OpenSong song file. Missing song tag. - + @@ -9252,7 +9251,7 @@ Please enter the verses separated by spaces. Songbook Maintenance - + @@ -9270,7 +9269,7 @@ Please enter the verses separated by spaces. Your song export failed because this error occurred: %s - + @@ -9414,12 +9413,12 @@ Please enter the verses separated by spaces. CCLI SongSelect Importer - + <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. - + @@ -9434,17 +9433,17 @@ Please enter the verses separated by spaces. Save username and password - + Login - + Search Text: - + @@ -9454,12 +9453,12 @@ Please enter the verses separated by spaces. Found %s song(s) - + Logout - + @@ -9474,7 +9473,7 @@ Please enter the verses separated by spaces. Author(s): - + @@ -9484,17 +9483,17 @@ Please enter the verses separated by spaces. CCLI Number: - + Lyrics: - + Back - + @@ -9504,62 +9503,62 @@ Please enter the verses separated by spaces. More than 1000 results - + Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. - + Logging out... - + Save Username and Password - + WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. - + Error Logging In - + There was a problem logging in, perhaps your username or password is incorrect? - + Song Imported - + Incomplete song - + This song is missing some information, like the lyrics, and cannot be imported. - + Your song has been imported, would you like to import more songs? - + Stop - + @@ -9587,12 +9586,12 @@ Please enter the verses separated by spaces. Display songbook in footer - + Display "%s" symbol before copyright info - + @@ -9656,7 +9655,7 @@ Please enter the verses separated by spaces. Error: %s - + @@ -9664,12 +9663,12 @@ Please enter the verses separated by spaces. Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words - + Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock - + @@ -9692,7 +9691,7 @@ Please enter the verses separated by spaces. File not valid WorshipAssistant CSV format. - + @@ -9705,7 +9704,7 @@ Please enter the verses separated by spaces. Unable to connect the WorshipCenter Pro database. - + @@ -9741,32 +9740,32 @@ Please enter the verses separated by spaces. Wizard - + This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. - + Searching for duplicate songs. - + Please wait while your songs database is analyzed. - + Here you can decide which songs to remove and which ones to keep. - + Review duplicate songs (%s/%s) - + @@ -9776,7 +9775,7 @@ Please enter the verses separated by spaces. No duplicate songs have been found in the database. - + - + \ No newline at end of file diff --git a/resources/i18n/zh_CN.ts b/resources/i18n/zh_CN.ts index fd31c6dbf..75518a74f 100644 --- a/resources/i18n/zh_CN.ts +++ b/resources/i18n/zh_CN.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -33,7 +32,7 @@ <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of alerts on the display screen. - + @@ -96,16 +95,16 @@ Do you want to continue anyway? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? 警告文字并不包含'<>'。 您依然希望继续吗? - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. - + @@ -658,37 +657,37 @@ Please type in some text before clicking New. : Verse identifier e.g. Genesis 1 : 1 = Genesis Chapter 1 Verse 1 - + v Verse identifier e.g. Genesis 1 v 1 = Genesis Chapter 1 Verse 1 - + V Verse identifier e.g. Genesis 1 V 1 = Genesis Chapter 1 Verse 1 - + verse Verse identifier e.g. Genesis 1 verse 1 = Genesis Chapter 1 Verse 1 - + verses Verse identifier e.g. Genesis 1 verses 1 - 2 = Genesis Chapter 1 Verses 1 to 2 - + - range identifier e.g. Genesis 1 verse 1 - 2 = Genesis Chapter 1 Verses 1 To 2 - + @@ -700,19 +699,19 @@ Please type in some text before clicking New. , connecting identifier e.g. Genesis 1 verse 1 - 2, 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 - + and connecting identifier e.g. Genesis 1 verse 1 - 2 and 4 - 5 = Genesis Chapter 1 Verses 1 To 2 And Verses 4 To 5 - + end ending identifier e.g. Genesis 1 verse 1 - end = Genesis Chapter 1 Verses 1 To The Last Verse - + @@ -928,7 +927,7 @@ search results and on display: Show verse numbers - + @@ -1264,27 +1263,27 @@ It is not possible to customize the Book Names. Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. - + Click to download bible list - + Download bible list - + Error during download - + An error occurred while downloading the list of bibles from %s. - + @@ -1425,7 +1424,7 @@ You will need to re-import this Bible to use it again. Incorrect Bible file type supplied. This looks like a Zefania XML bible, please use the Zefania import option. - + @@ -1433,7 +1432,7 @@ You will need to re-import this Bible to use it again. Importing %(bookname)s %(chapter)s... - + @@ -1441,12 +1440,12 @@ You will need to re-import this Bible to use it again. Removing unused tags (this may take a few minutes)... - + Importing %(bookname)s %(chapter)s... - + @@ -1595,7 +1594,7 @@ Complete Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + @@ -1603,7 +1602,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Incorrect Bible file type supplied. Zefania Bibles may be compressed. You must decompress them before import. - + @@ -1611,7 +1610,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Importing %(bookname)s %(chapter)s... - + @@ -1677,7 +1676,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I <strong>Custom Slide Plugin </strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - + @@ -1695,7 +1694,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Import missing custom slides from service files - + @@ -1758,7 +1757,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I You need to add at least one slide. - + @@ -1774,7 +1773,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the "%d" selected custom slide(s)? - + @@ -1843,32 +1842,32 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Add group - + Parent group: - + Group name: - + You need to type in a group name. - + Could not add the new group. - + This group already exists. - + @@ -1876,27 +1875,27 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Select Image Group - + Add images to group: - + No group - + Existing group - + New group - + @@ -1949,22 +1948,22 @@ Do you want to add the other images anyway? -- Top-level group -- - + You must select an image or group to delete. - + Remove group - + Are you sure you want to remove "%s" and everything in it? - + @@ -1980,27 +1979,27 @@ Do you want to add the other images anyway? Audio - + Video - + VLC is an external player which supports a number of different formats. - + Webkit is a media player which runs inside a web browser. This player allows text over video to be rendered. - + This media player uses your operating system to provide media capabilities. - + @@ -2069,32 +2068,32 @@ Do you want to add the other images anyway? Select Media Clip - + Source - + Media path: - + Select drive from list - + Load disc - + Track Details - + @@ -2104,52 +2103,52 @@ Do you want to add the other images anyway? Audio track: - + Subtitle track: - + HH:mm:ss.z - + Clip Range - + Start point: - + Set start point - + Jump to start point - + End point: - + Set end point - + Jump to end point - + @@ -2157,67 +2156,67 @@ Do you want to add the other images anyway? No path was given - + Given path does not exists - + An error happened during initialization of VLC player - + VLC player failed playing the media - + CD not loaded correctly - + The CD was not loaded correctly, please re-load and try again. - + DVD not loaded correctly - + The DVD was not loaded correctly, please re-load and try again. - + Set name of mediaclip - + Name of mediaclip: - + Enter a valid name or cancel - + Invalid character - + The name of the mediaclip must not contain the character ":" - + @@ -2275,37 +2274,37 @@ Do you want to add the other images anyway? VLC player required - + VLC player required for playback of optical devices - + Load CD/DVD - + Load CD/DVD - only supported when VLC is installed and enabled - + The optical disc %s is no longer available. - + Mediaclip already saved - + This mediaclip has already been saved - + @@ -2318,7 +2317,7 @@ Do you want to add the other images anyway? Start Live items automatically - + @@ -2326,7 +2325,7 @@ Do you want to add the other images anyway? &Projector Manager - + @@ -2353,27 +2352,27 @@ Should OpenLP upgrade now? Backup - + OpenLP has been upgraded, do you want to create a backup of OpenLPs data folder? - + Backup of the data folder failed! - + A backup of the data folder has been created at %s - + Open - + @@ -2428,147 +2427,147 @@ OpenLP是由志愿者编写和维护的。如果您想看到更多基督教的 Project Lead - + Developers - + Contributors - + Packagers - + Testers - + Translators - + Afrikaans (af) - + Czech (cs) - + Danish (da) - + German (de) - + Greek (el) - + English, United Kingdom (en_GB) - + English, South Africa (en_ZA) - + Spanish (es) - + Estonian (et) - + Finnish (fi) - + French (fr) - + Hungarian (hu) - + Indonesian (id) - + Japanese (ja) - + - Norwegian Bokmål (nb) - + Norwegian Bokmål (nb) + Dutch (nl) - + Polish (pl) - + Portuguese, Brazil (pt_BR) - + Russian (ru) - + Swedish (sv) - + Tamil(Sri-Lanka) (ta_LK) - + Chinese(China) (zh_CN) - + Documentation - + @@ -2579,7 +2578,7 @@ OpenLP是由志愿者编写和维护的。如果您想看到更多基督教的 Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ - + @@ -2594,13 +2593,13 @@ OpenLP是由志愿者编写和维护的。如果您想看到更多基督教的 on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - + - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s - + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s + @@ -2883,17 +2882,17 @@ The data directory will be changed when OpenLP is closed. Thursday - + Display Workarounds - + Use alternating row colours in lists - + @@ -2904,17 +2903,17 @@ The location you have selected %s appears to contain OpenLP data files. Do you wish to replace these files with the current data files? - + Restart Required - + This change will only take effect once OpenLP has been restarted. - + @@ -2939,252 +2938,252 @@ This location will be used after OpenLP is closed. RGB - + Video - + Digital - + Storage - + Network - + RGB 1 - + RGB 2 - + RGB 3 - + RGB 4 - + RGB 5 - + RGB 6 - + RGB 7 - + RGB 8 - + RGB 9 - + Video 1 - + Video 2 - + Video 3 - + Video 4 - + Video 5 - + Video 6 - + Video 7 - + Video 8 - + Video 9 - + Digital 1 - + Digital 2 - + Digital 3 - + Digital 4 - + Digital 5 - + Digital 6 - + Digital 7 - + Digital 8 - + Digital 9 - + Storage 1 - + Storage 2 - + Storage 3 - + Storage 4 - + Storage 5 - + Storage 6 - + Storage 7 - + Storage 8 - + Storage 9 - + Network 1 - + Network 2 - + Network 3 - + Network 4 - + Network 5 - + Network 6 - + Network 7 - + Network 8 - + Network 9 - + @@ -3218,12 +3217,12 @@ This location will be used after OpenLP is closed. Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. - + @@ -3460,79 +3459,79 @@ To re-run the First Time Wizard and import this sample data at a later time, che There was a connection problem during download, so further downloads will be skipped. Try to re-run the First Time Wizard later. - + Download complete. Click the %s button to return to OpenLP. - + Download complete. Click the %s button to start OpenLP. - + Click the %s button to return to OpenLP. - + Click the %s button to start OpenLP. - + There was a connection problem while downloading, so further downloads will be skipped. Try to re-run the First Time Wizard later. - + This wizard will help you to configure OpenLP for initial use. Click the %s button below to start. - + To cancel the First Time Wizard completely (and not start OpenLP), click the %s button now. - + Downloading Resource Index - + Please wait while the resource index is downloaded. - + Please wait while OpenLP downloads the resource index file... - + Downloading and Configuring - + Please wait while resources are downloaded and OpenLP is configured. - + Network Error - + There was a network error attempting to connect to retrieve initial configuration information - + @@ -3542,7 +3541,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Unable to download some files - + @@ -3575,12 +3574,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Default Formatting - + Custom Formatting - + @@ -3598,12 +3597,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Description is missing - + Tag is missing - + @@ -3613,17 +3612,17 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s Description %s already defined. - + Start tag %s is not valid HTML - + End tag %(end)s does not match end tag for start tag %(start)s - + @@ -4337,12 +4336,12 @@ Re-running this wizard may make changes to your current OpenLP configuration and Library - + Jump to the search box of the current active plugin. - + @@ -4351,89 +4350,89 @@ Re-running this wizard may make changes to your current OpenLP configuration and Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + The file you have selected does not appear to be a valid OpenLP settings file. Processing has terminated and no changes have been made. - + Projector Manager - + Toggle Projector Manager - + Toggle the visibility of the Projector Manager - + Export setting error - + The key "%s" does not have a default value so it will be skipped in this export. - + An error occurred while exporting the settings: %s - + &Recent Services - + &New Service - + &Open Service - + &Save Service - + Save Service &As... - + &Manage Plugins - + Exit OpenLP - + Are you sure you want to exit OpenLP? - + &Exit OpenLP - + @@ -4448,7 +4447,7 @@ Processing has terminated and no changes have been made. The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s - 正在载入的数据库是由一个更新版本的OpenLP创建的。数据库的版本是%d,而OpenLP期望的版本为%d。该数据库将不被加载。 + @@ -4553,22 +4552,22 @@ Suffix not supported Unknown status - + No message - + Error while sending data to projector - + Undefined command: - + @@ -4576,7 +4575,7 @@ Suffix not supported Players - + @@ -4586,12 +4585,12 @@ Suffix not supported Player Search Order - + Visible background for videos with aspect ratio different to screen. - + @@ -4602,7 +4601,7 @@ Suffix not supported NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" - + @@ -4645,7 +4644,7 @@ Suffix not supported Manage Plugins - + @@ -4744,257 +4743,257 @@ Suffix not supported OK - + General projector error - + Not connected error - + Lamp error - + Fan error - + High temperature detected - + Cover open detected - + Check filter - + Authentication Error - + Undefined Command - + Invalid Parameter - + Projector Busy - + Projector/Display Error - + Invalid packet received - + Warning condition detected - + Error condition detected - + PJLink class not supported - + Invalid prefix character - + The connection was refused by the peer (or timed out) - + The remote host closed the connection - + The host address was not found - + The socket operation failed because the application lacked the required privileges - + The local system ran out of resources (e.g., too many sockets) - + The socket operation timed out - + The datagram was larger than the operating system's limit - + An error occurred with the network (Possibly someone pulled the plug?) - + The address specified with socket.bind() is already in use and was set to be exclusive - + The address specified to socket.bind() does not belong to the host - + The requested socket operation is not supported by the local operating system (e.g., lack of IPv6 support) - + The socket is using a proxy, and the proxy requires authentication - + The SSL/TLS handshake failed - + The last operation attempted has not finished yet (still in progress in the background) - + Could not contact the proxy server because the connection to that server was denied - + The connection to the proxy server was closed unexpectedly (before the connection to the final peer was established) - + The connection to the proxy server timed out or the proxy server stopped responding in the authentication phase. - + The proxy address set with setProxy() was not found - + An unidentified error occurred - + Not connected - + Connecting - + Connected - + Getting status - + Off - + Initialize in progress - + Power in standby - + Warmup in progress - + Power is on - + Cooldown in progress - + Projector Information available - + Sending data - + Received data - + The connection negotiation with the proxy server failed because the response from the proxy server could not be understood - + @@ -5002,17 +5001,17 @@ Suffix not supported Name Not Set - + You must enter a name for this entry.<br />Please enter a new name for this entry. - + Duplicate Name - + @@ -5020,37 +5019,37 @@ Suffix not supported Add New Projector - + Edit Projector - + IP Address - + Port Number - + PIN - + Name - + Location - + @@ -5065,7 +5064,7 @@ Suffix not supported There was an error saving projector information. See the log for the error - + @@ -5073,162 +5072,162 @@ Suffix not supported Add Projector - + Add a new projector - + Edit Projector - + Edit selected projector - + Delete Projector - + Delete selected projector - + Select Input Source - + Choose input source on selected projector - + View Projector - + View selected projector information - + Connect to selected projector - + Connect to selected projectors - + Disconnect from selected projectors - + Disconnect from selected projector - + Power on selected projector - + Standby selected projector - + Put selected projector in standby - + Blank selected projector screen - + Show selected projector screen - + &View Projector Information - + &Edit Projector - + &Connect Projector - + D&isconnect Projector - + Power &On Projector - + Power O&ff Projector - + Select &Input - + Edit Input Source - + &Blank Projector Screen - + &Show Projector Screen - + &Delete Projector - + Name - + IP - + @@ -5243,102 +5242,102 @@ Suffix not supported Projector information not available at this time. - + Projector Name - + Manufacturer - + Model - + Other info - + Power status - + Shutter is - + Closed - + Current source input is - + Lamp - + On - + Off - + Hours - + No current errors or warnings - + Current errors/warnings - + Projector Information - + No message - + Not Implemented Yet - + Delete projector (%s) %s? - + Are you sure you want to delete this projector? - + @@ -5346,27 +5345,27 @@ Suffix not supported Fan - + Lamp - + Temperature - + Cover - + Filter - + @@ -5379,37 +5378,37 @@ Suffix not supported Projector - + Communication Options - + Connect to projectors on startup - + Socket timeout (seconds) - + Poll time (seconds) - + Tabbed dialog box - + Single dialog box - + @@ -5417,17 +5416,17 @@ Suffix not supported Duplicate IP Address - + Invalid IP Address - + Invalid Port Number - + @@ -5458,7 +5457,7 @@ Suffix not supported [slide %d] - + @@ -5734,79 +5733,79 @@ Suffix not supported &Rename... - + Create New &Custom Slide - + &Auto play slides - + Auto play slides &Loop - + Auto play slides &Once - + &Delay between slides - + OpenLP Service Files (*.osz *.oszl) - + OpenLP Service Files (*.osz);; OpenLP Service Files - lite (*.oszl) - + OpenLP Service Files (*.osz);; - + File is not a valid service. The content encoding is not UTF-8. - + The service file you are trying to open is in an old format. Please save it using OpenLP 2.0.2 or greater. - + This file is either corrupt or it is not an OpenLP 2 service file. - + &Auto Start - inactive - + &Auto Start - active - + Input delay - + @@ -5816,7 +5815,7 @@ Suffix not supported Rename item title - + @@ -5826,14 +5825,14 @@ Suffix not supported An error occurred while writing the service file: %s - + The following file(s) in the service are missing: %s These files will be removed if you continue to save. - + @@ -6098,42 +6097,42 @@ These files will be removed if you continue to save. Select Projector Source - + Edit Projector Source Text - + Ignoring current changes and return to OpenLP - + Delete all user-defined text and revert to PJLink default text - + Discard changes and reset to previous user-defined text - + Save changes and return to OpenLP - + Delete entries for this projector - + Are you sure you want to delete ALL user-defined source input text for this projector? - + @@ -6419,29 +6418,29 @@ These files will be removed if you continue to save. The theme export failed because this error occurred: %s - + OpenLP Themes (*.otz) - + %s time(s) by %s - + Unable to delete theme - + Theme is currently used %s - + @@ -6734,17 +6733,17 @@ These files will be removed if you continue to save. Solid color - + color: - + Allows you to change and move the Main and Footer areas. - + @@ -6802,12 +6801,12 @@ These files will be removed if you continue to save. Universal Settings - + &Wrap footer text - + @@ -6917,7 +6916,7 @@ These files will be removed if you continue to save. - © + © Copyright symbol. © @@ -6978,17 +6977,17 @@ These files will be removed if you continue to save. Welcome to the Duplicate Song Removal Wizard - + Written by - + Author Unknown - + @@ -7003,7 +7002,7 @@ These files will be removed if you continue to save. Add group - + @@ -7120,13 +7119,13 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for File Not Found - + File %s not found. Please try selecting it individually. - + @@ -7202,25 +7201,25 @@ Please try selecting it individually. Manufacturer Singular - + Manufacturers Plural - + Model Singular - + Models Plural - + @@ -7317,13 +7316,13 @@ Please try selecting it individually. Projector Singular - + Projectors Plural - + @@ -7472,12 +7471,12 @@ Please try selecting it individually. CCLI song number: - + Preview Toolbar - + @@ -7487,19 +7486,19 @@ Please try selecting it individually. Replace live background is not available when the WebKit player is disabled. - + Songbook Singular - + Songbooks Plural - + @@ -7508,25 +7507,25 @@ Please try selecting it individually. %s and %s Locale list separator: 2 items - + %s, and %s Locale list separator: end - + %s, %s Locale list separator: middle - + %s, %s Locale list separator: start - + @@ -7534,7 +7533,7 @@ Please try selecting it individually. Source select dialog interface - + @@ -7646,7 +7645,7 @@ Please try selecting it individually. An error occurred in the Powerpoint integration and the presentation will be stopped. Restart the presentation if you wish to present it. - + @@ -7669,37 +7668,37 @@ Please try selecting it individually. PDF options - + Use given full path for mudraw or ghostscript binary: - + Select mudraw or ghostscript binary. - + The program is not ghostscript or mudraw which is required. - + PowerPoint options - + Clicking on a selected slide in the slidecontroller advances to next effect. - + Let PowerPoint control the size and position of the presentation window (workaround for Windows 8 scaling issue). - + @@ -7730,12 +7729,12 @@ Please try selecting it individually. Server Config Change - + Server configuration changes will require a restart to take effect. - + @@ -7858,12 +7857,12 @@ Please try selecting it individually. Stage View - + Live View - + @@ -7906,27 +7905,27 @@ Please try selecting it individually. Live view URL: - + HTTPS Server - + Could not find an SSL certificate. The HTTPS server will not be available unless an SSL certificate is found. Please see the manual for more information. - + User Authentication - + User id: - + @@ -7936,12 +7935,12 @@ Please try selecting it individually. Show thumbnails of non-text slides in remote and stage view. - + Scan the QR code or click <a href="%s">download</a> to install the Android app from Google Play. - + @@ -8056,12 +8055,12 @@ Please try selecting it individually. Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + All requested data has been deleted successfully. - + @@ -8120,17 +8119,17 @@ has been successfully created. You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + Report Creation Failed - + An error occurred while creating the report: %s - + @@ -8316,22 +8315,22 @@ The encoding is responsible for the correct character representation. CCLI SongSelect - + Import songs from CCLI's SongSelect service. - + Find &Duplicate Songs - + Find and remove duplicate songs in the song database. - + @@ -8340,25 +8339,25 @@ The encoding is responsible for the correct character representation. Words Author who wrote the lyrics of a song - + Music Author who wrote the music of a song - + Words and Music Author who wrote both lyrics and music of a song - + Translation Author who translated the song - + @@ -8412,7 +8411,7 @@ The encoding is responsible for the correct character representation. Invalid DreamBeam song file. Missing DreamSong tag. - + @@ -8425,43 +8424,43 @@ The encoding is responsible for the correct character representation. "%s" could not be imported. %s - + Unexpected data formatting. - + No song text found. - + [above are Song Tags with notes imported from EasyWorship] - + This file does not exist. - + Could not find the "Songs.MB" file. It must be in the same folder as the "Songs.DB" file. - + This file is not a valid EasyWorship database. - + Could not retrieve encoding. - + @@ -8642,79 +8641,79 @@ The encoding is responsible for the correct character representation. <strong>Warning:</strong> You have not entered a verse order. - + There is no verse corresponding to "%(invalid)s".Valid entries are %(valid)s. Please enter the verses separated by spaces. - + Invalid Verse Order - + &Edit Author Type - + Edit Author Type - + Choose type for this author - + There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. - + &Manage Authors, Topics, Songbooks - + Add &to Song - + Re&move - + Authors, Topics && Songbooks - + Add Songbook - + This Songbook does not exist, do you want to add it? - + This Songbook is already in the list. - + You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + @@ -8820,7 +8819,7 @@ Please enter the verses separated by spaces. This wizard will help to export your songs to the open and free <strong>OpenLyrics </strong> worship song format. - + @@ -8828,7 +8827,7 @@ Please enter the verses separated by spaces. Invalid Foilpresenter song file. No verses found. - + @@ -8999,82 +8998,82 @@ Please enter the verses separated by spaces. EasyWorship Service File - + WorshipCenter Pro Song Files - + The WorshipCenter Pro importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + PowerPraise Song Files - + PresentationManager Song Files - + ProPresenter 4 Song Files - + Worship Assistant Files - + Worship Assistant (CSV) - + In Worship Assistant, export your Database to a CSV file. - + OpenLyrics or OpenLP 2 Exported Song - + OpenLP 2 Databases - + LyriX Files - + LyriX (Exported TXT-files) - + VideoPsalm Files - + VideoPsalm - + The VideoPsalm songbooks are normally located in %s - + @@ -9082,7 +9081,7 @@ Please enter the verses separated by spaces. Error: %s - + @@ -9154,12 +9153,12 @@ Please enter the verses separated by spaces. Are you sure you want to delete the "%d" selected song(s)? - + Search Songbooks... - + @@ -9175,7 +9174,7 @@ Please enter the verses separated by spaces. Not a valid OpenLP 2 song database. - + @@ -9191,7 +9190,7 @@ Please enter the verses separated by spaces. Invalid OpenSong song file. Missing song tag. - + @@ -9247,7 +9246,7 @@ Please enter the verses separated by spaces. Songbook Maintenance - + @@ -9265,7 +9264,7 @@ Please enter the verses separated by spaces. Your song export failed because this error occurred: %s - + @@ -9409,12 +9408,12 @@ Please enter the verses separated by spaces. CCLI SongSelect Importer - + <strong>Note:</strong> An Internet connection is required in order to import songs from CCLI SongSelect. - + @@ -9429,17 +9428,17 @@ Please enter the verses separated by spaces. Save username and password - + Login - + Search Text: - + @@ -9449,12 +9448,12 @@ Please enter the verses separated by spaces. Found %s song(s) - + Logout - + @@ -9469,7 +9468,7 @@ Please enter the verses separated by spaces. Author(s): - + @@ -9479,17 +9478,17 @@ Please enter the verses separated by spaces. CCLI Number: - + Lyrics: - + Back - + @@ -9499,62 +9498,62 @@ Please enter the verses separated by spaces. More than 1000 results - + Your search has returned more than 1000 results, it has been stopped. Please refine your search to fetch better results. - + Logging out... - + Save Username and Password - + WARNING: Saving your username and password is INSECURE, your password is stored in PLAIN TEXT. Click Yes to save your password or No to cancel this. - + Error Logging In - + There was a problem logging in, perhaps your username or password is incorrect? - + Song Imported - + Incomplete song - + This song is missing some information, like the lyrics, and cannot be imported. - + Your song has been imported, would you like to import more songs? - + Stop - + @@ -9582,12 +9581,12 @@ Please enter the verses separated by spaces. Display songbook in footer - + Display "%s" symbol before copyright info - + @@ -9651,7 +9650,7 @@ Please enter the verses separated by spaces. Error: %s - + @@ -9659,12 +9658,12 @@ Please enter the verses separated by spaces. Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words - + Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock - + @@ -9687,7 +9686,7 @@ Please enter the verses separated by spaces. File not valid WorshipAssistant CSV format. - + @@ -9700,7 +9699,7 @@ Please enter the verses separated by spaces. Unable to connect the WorshipCenter Pro database. - + @@ -9736,32 +9735,32 @@ Please enter the verses separated by spaces. Wizard - + This wizard will help you to remove duplicate songs from the song database. You will have a chance to review every potential duplicate song before it is deleted. So no songs will be deleted without your explicit approval. - + Searching for duplicate songs. - + Please wait while your songs database is analyzed. - + Here you can decide which songs to remove and which ones to keep. - + Review duplicate songs (%s/%s) - + @@ -9771,7 +9770,7 @@ Please enter the verses separated by spaces. No duplicate songs have been found in the database. - + - + \ No newline at end of file diff --git a/resources/i18n/zh_TW.ts b/resources/i18n/zh_TW.ts index 9a1060281..a65e763f5 100644 --- a/resources/i18n/zh_TW.ts +++ b/resources/i18n/zh_TW.ts @@ -1,5 +1,4 @@ - - + AlertsPlugin @@ -96,14 +95,14 @@ Do you want to continue anyway? - The alert text does not contain '<>'. + The alert text does not contain '<>'. Do you want to continue anyway? 警報訊息沒有包含'<>', 是否繼續? - You haven't specified any text for your alert. + You haven't specified any text for your alert. Please type in some text before clicking New. 您尚未在警報文字欄指定任何文字。 請在新建前輸入一些文字。 @@ -1598,7 +1597,7 @@ Complete Upgrading Bible(s): %(success)d successful%(failed_text)s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + @@ -1777,7 +1776,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I Are you sure you want to delete the "%d" selected custom slide(s)? - + @@ -2004,7 +2003,7 @@ Do you want to add the other images anyway? This media player uses your operating system to provide media capabilities. - + @@ -2448,7 +2447,7 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr Packagers - + @@ -2473,97 +2472,97 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr Danish (da) - + German (de) - + Greek (el) - + English, United Kingdom (en_GB) - + English, South Africa (en_ZA) - + Spanish (es) - + Estonian (et) - + Finnish (fi) - + French (fr) - + Hungarian (hu) - + Indonesian (id) - + Japanese (ja) - + - Norwegian Bokmål (nb) - + Norwegian Bokmål (nb) + Dutch (nl) - + Polish (pl) - + Portuguese, Brazil (pt_BR) - + Russian (ru) - + Swedish (sv) - + Tamil(Sri-Lanka) (ta_LK) - + @@ -2584,7 +2583,7 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr Oxygen Icons: http://techbase.kde.org/Projects/Oxygen/ MuPDF: http://www.mupdf.com/ - + @@ -2599,13 +2598,13 @@ OpenLP is written and maintained by volunteers. If you would like to see more fr on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - + - Copyright © 2004-2016 %s -Portions copyright © 2004-2016 %s - + Copyright © 2004-2016 %s +Portions copyright © 2004-2016 %s + @@ -2929,7 +2928,7 @@ appears to contain OpenLP data files. Do you wish to replace these files with th Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + @@ -3224,12 +3223,12 @@ This location will be used after OpenLP is closed. Please enter a description of what you were doing to cause this error. If possible, write in English. (Minimum 20 characters) - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Also attach any files that triggered the problem. - + @@ -3630,7 +3629,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the %s End tag %(end)s does not match end tag for start tag %(start)s - + @@ -4406,47 +4405,47 @@ Processing has terminated and no changes have been made. &Recent Services - + &New Service - + &Open Service - + &Save Service - + Save Service &As... - + &Manage Plugins - + Exit OpenLP - + Are you sure you want to exit OpenLP? - + &Exit OpenLP - + @@ -4617,7 +4616,7 @@ Suffix not supported NOTE: To use VLC you must install the %s version Will insert "32bit" or "64bit" - + @@ -4660,7 +4659,7 @@ Suffix not supported Manage Plugins - + @@ -5348,12 +5347,12 @@ Suffix not supported Delete projector (%s) %s? - + Are you sure you want to delete this projector? - + @@ -6448,19 +6447,19 @@ These files will be removed if you continue to save. %s time(s) by %s - + Unable to delete theme - + Theme is currently used %s - + @@ -6936,7 +6935,7 @@ These files will be removed if you continue to save. - © + © Copyright symbol. © @@ -7507,19 +7506,19 @@ Please try selecting it individually. Replace live background is not available when the WebKit player is disabled. - + Songbook Singular - + Songbooks Plural - + @@ -8694,47 +8693,47 @@ Please enter the verses separated by spaces. There are no verses corresponding to "%(invalid)s". Valid entries are %(valid)s. Please enter the verses separated by spaces. - + &Manage Authors, Topics, Songbooks - + Add &to Song - + Re&move - + Authors, Topics && Songbooks - + Add Songbook - + This Songbook does not exist, do you want to add it? - + This Songbook is already in the list. - + You have not selected a valid Songbook. Either select a Songbook from the list, or type in a new Songbook and click the "Add to Song" button to add the new Songbook. - + @@ -9064,37 +9063,37 @@ Please enter the verses separated by spaces. OpenLyrics or OpenLP 2 Exported Song - + OpenLP 2 Databases - + LyriX Files - + LyriX (Exported TXT-files) - + VideoPsalm Files - + VideoPsalm - + The VideoPsalm songbooks are normally located in %s - + @@ -9102,7 +9101,7 @@ Please enter the verses separated by spaces. Error: %s - + @@ -9174,12 +9173,12 @@ Please enter the verses separated by spaces. Are you sure you want to delete the "%d" selected song(s)? - + Search Songbooks... - + @@ -9195,7 +9194,7 @@ Please enter the verses separated by spaces. Not a valid OpenLP 2 song database. - + @@ -9267,7 +9266,7 @@ Please enter the verses separated by spaces. Songbook Maintenance - + @@ -9574,7 +9573,7 @@ Please enter the verses separated by spaces. Stop - + @@ -9671,7 +9670,7 @@ Please enter the verses separated by spaces. Error: %s - + @@ -9679,12 +9678,12 @@ Please enter the verses separated by spaces. Invalid Words of Worship song file. Missing "%s" header.WoW File\nSong Words - + Invalid Words of Worship song file. Missing "%s" string.CSongDoc::CBlock - + @@ -9794,4 +9793,4 @@ Please enter the verses separated by spaces. 資料庫中找不到重複的歌曲。 - + \ No newline at end of file diff --git a/tests/functional/openlp_plugins/presentations/test_messagelistener.py b/tests/functional/openlp_plugins/presentations/test_messagelistener.py index 0997f643a..14bc06bf2 100644 --- a/tests/functional/openlp_plugins/presentations/test_messagelistener.py +++ b/tests/functional/openlp_plugins/presentations/test_messagelistener.py @@ -26,6 +26,7 @@ from unittest import TestCase from openlp.core.common import Registry from openlp.plugins.presentations.lib.mediaitem import MessageListener, PresentationMediaItem +from openlp.plugins.presentations.lib.messagelistener import Controller from tests.functional import patch, MagicMock from tests.helpers.testmixin import TestMixin @@ -124,3 +125,26 @@ class TestMessageListener(TestCase, TestMixin): # THEN: The handler should be set to None self.assertIsNone(ml.handler, 'The handler should be None') + + +class TestController(TestCase, TestMixin): + """ + Test the Presentation Controller. + """ + + def add_handler_failure_test(self): + """ + Test that add_handler does set doc.slidenumber to 0 in case filed loading + """ + # GIVEN: A Controller, a mocked doc-controller + controller = Controller(True) + mocked_doc_controller = MagicMock() + mocked_doc = MagicMock() + mocked_doc.load_presentation.return_value = False + mocked_doc_controller.add_document.return_value = mocked_doc + + # WHEN: calling add_handler that fails + controller.add_handler(mocked_doc_controller, MagicMock(), True, 0) + + # THEN: slidenumber should be 0 + self.assertEqual(controller.doc.slidenumber, 0, 'doc.slidenumber should be 0') diff --git a/tests/functional/openlp_plugins/songusage/test_songusage.py b/tests/functional/openlp_plugins/songusage/test_songusage.py index 04efd03cb..6b103c9f1 100644 --- a/tests/functional/openlp_plugins/songusage/test_songusage.py +++ b/tests/functional/openlp_plugins/songusage/test_songusage.py @@ -23,12 +23,23 @@ This module contains tests for the Songusage plugin. """ from unittest import TestCase +from unittest.mock import MagicMock, patch + +from openlp.core import Registry +from openlp.plugins.songusage.lib import upgrade +from openlp.plugins.songusage.lib.db import init_schema from openlp.plugins.songusage.songusageplugin import SongUsagePlugin class TestSongUsage(TestCase): - def test_about_text(self): + def setUp(self): + Registry.create() + + def about_text_test(self): + """ + Test the about text of the song usage plugin + """ # GIVEN: The SongUsagePlugin # WHEN: Retrieving the about text # THEN: about() should return a string object @@ -36,3 +47,37 @@ class TestSongUsage(TestCase): # THEN: about() should return a non-empty string self.assertNotEquals(len(SongUsagePlugin.about()), 0) self.assertNotEquals(len(SongUsagePlugin.about()), 0) + + @patch('openlp.plugins.songusage.songusageplugin.Manager') + def song_usage_init_test(self, MockedManager): + """ + Test the initialisation of the SongUsagePlugin class + """ + # GIVEN: A mocked database manager + mocked_manager = MagicMock() + MockedManager.return_value = mocked_manager + + # WHEN: The SongUsagePlugin class is instantiated + song_usage = SongUsagePlugin() + + # THEN: It should be initialised correctly + MockedManager.assert_called_with('songusage', init_schema, upgrade_mod=upgrade) + self.assertEqual(mocked_manager, song_usage.manager) + self.assertFalse(song_usage.song_usage_active) + + @patch('openlp.plugins.songusage.songusageplugin.Manager') + def check_pre_conditions_test(self, MockedManager): + """ + Test that check_pre_condition returns true for valid manager session + """ + # GIVEN: A mocked database manager + mocked_manager = MagicMock() + mocked_manager.session = MagicMock() + MockedManager.return_value = mocked_manager + song_usage = SongUsagePlugin() + + # WHEN: The calling check_pre_conditions + ret = song_usage.check_pre_conditions() + + # THEN: It should return True + self.assertTrue(ret) diff --git a/tests/interfaces/openlp_core_ui/test_shortcutlistform.py b/tests/interfaces/openlp_core_ui/test_shortcutlistform.py index c953d2047..095e2caad 100644 --- a/tests/interfaces/openlp_core_ui/test_shortcutlistform.py +++ b/tests/interfaces/openlp_core_ui/test_shortcutlistform.py @@ -227,4 +227,3 @@ class TestShortcutform(TestCase, TestMixin): mocked_action_shortcuts.assert_called_with(mocked_action) mocked_refresh_shortcut_list.assert_called_with() mocked_set_text.assert_called_with('Esc') - diff --git a/tests/utils/test_bzr_tags.py b/tests/utils/test_bzr_tags.py index a92253814..95d2d8575 100644 --- a/tests/utils/test_bzr_tags.py +++ b/tests/utils/test_bzr_tags.py @@ -29,7 +29,7 @@ from subprocess import Popen, PIPE TAGS1 = {'1.9.0', '1.9.1', '1.9.2', '1.9.3', '1.9.4', '1.9.5', '1.9.6', '1.9.7', '1.9.8', '1.9.9', '1.9.10', '1.9.11', '1.9.12', '2.0', '2.1.0', '2.1.1', '2.1.2', '2.1.3', '2.1.4', '2.1.5', '2.1.6', '2.2', - '2.3.1', '2.3.2'} + '2.3.1', '2.3.2', '2.3.3', '2.4'} class TestBzrTags(TestCase):